Robuta

Sponsor of the Day: Jerkmate
https://doc.rust-lang.org/std/sync/mpsc/struct.RecvError.html RecvError in std::sync::mpsc - Rust An error returned from the `recv` function on a `Receiver`. std sync mpscrust https://doc.rust-lang.org/std/sync/mpsc/struct.Sender.html Sender in std::sync::mpsc - Rust The sending-half of Rust’s asynchronous `channel` type. std sync mpscsenderrust https://doc.rust-lang.org/std/sync/mpsc/index.html std::sync::mpsc - Rust Multi-producer, single-consumer FIFO queue communication primitives. std sync mpscrust https://doc.rust-lang.org/std/sync/mpsc/struct.Receiver.html Receiver in std::sync::mpsc - Rust The receiving half of Rust’s `channel` (or `sync_channel`) type. This half can only be owned by one thread. std sync mpscreceiverrust https://doc.rust-lang.org/std/sync/mpsc/struct.IntoIter.html IntoIter in std::sync::mpsc - Rust An owning iterator over messages on a `Receiver`, created by `into_iter`. std sync mpscintoiterrust https://doc.rust-lang.org/std/sync/mpsc/enum.TrySendError.html TrySendError in std::sync::mpsc - Rust This enumeration is the list of the possible error outcomes for the `try_send` method. std sync mpscrust https://doc.rust-lang.org/std/sync/mpsc/struct.TryIter.html TryIter in std::sync::mpsc - Rust An iterator that attempts to yield all pending values for a `Receiver`, created by `try_iter`. std sync mpscrust https://doc.rust-lang.org/std/sync/mpsc/enum.TryRecvError.html TryRecvError in std::sync::mpsc - Rust This enumeration is the list of the possible reasons that `try_recv` could not return data when called. This can occur with both a `channel` and a... std sync mpscrust https://doc.rust-lang.org/std/sync/mpsc/struct.Iter.html Iter in std::sync::mpsc - Rust An iterator over messages on a `Receiver`, created by `iter`. std sync mpsciterrust https://doc.rust-lang.org/std/sync/mpsc/fn.channel.html channel in std::sync::mpsc - Rust Creates a new asynchronous channel, returning the sender/receiver halves. std sync mpscchannelrust https://doc.rust-lang.org/std/sync/mpsc/enum.RecvTimeoutError.html RecvTimeoutError in std::sync::mpsc - Rust This enumeration is the list of possible errors that made `recv_timeout` unable to return data when called. This can occur with both a `channel` and a... std sync mpscrust