pub struct Receiver<T> { /* private fields */ }
Expand description
The receiver of the channel
.
Can also be created with the new_receiver
method of the Sender
.
This is a cloneable receiver, so you can have multiple receivers that start from the same point.
Broadcast messages sent by the channel are received by the recv
method.
Examples
use blinkcast::alloc::channel;
let (sender, mut receiver) = channel::<i32>(4);
sender.send(1);
assert_eq!(receiver.recv(), Some(1));
sender.send(2);
sender.send(3);
assert_eq!(receiver.recv(), Some(2));
// clone the receiver
let mut receiver2 = receiver.clone();
assert_eq!(receiver.recv(), Some(3));
assert_eq!(receiver2.recv(), Some(3));
assert_eq!(receiver.recv(), None);
assert_eq!(receiver2.recv(), None);
Implementations§
Trait Implementations§
impl<T: Clone + Send> Send for Receiver<T>
impl<T: Clone + Send> Sync for Receiver<T>
Auto Trait Implementations§
impl<T> !RefUnwindSafe for Receiver<T>
impl<T> Unpin for Receiver<T>
impl<T> !UnwindSafe for Receiver<T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more