pub struct Receiver<T> { /* private fields */ }
Expand description
The receiving side of a channel.
§Examples
use std::thread;
use std::time::Duration;
use crossbeam_channel::unbounded;
let (s, r) = unbounded();
thread::spawn(move || {
let _ = s.send(1);
thread::sleep(Duration::from_secs(1));
let _ = s.send(2);
});
assert_eq!(r.recv(), Ok(1)); // Received immediately.
assert_eq!(r.recv(), Ok(2)); // Received after 1 second.
Implementations§
Source§impl<T> Receiver<T>
impl<T> Receiver<T>
Sourcepub fn try_recv(&self) -> Result<T, TryRecvError>
pub fn try_recv(&self) -> Result<T, TryRecvError>
Attempts to receive a message from the channel without blocking.
This method will either receive a message from the channel immediately or return an error if the channel is empty.
If called on a zero-capacity channel, this method will receive a message only if there happens to be a send operation on the other side of the channel at the same time.
§Examples
use crossbeam_channel::{unbounded, TryRecvError};
let (s, r) = unbounded();
assert_eq!(r.try_recv(), Err(TryRecvError::Empty));
s.send(5).unwrap();
drop(s);
assert_eq!(r.try_recv(), Ok(5));
assert_eq!(r.try_recv(), Err(TryRecvError::Disconnected));
Sourcepub fn recv(&self) -> Result<T, RecvError>
pub fn recv(&self) -> Result<T, RecvError>
Blocks the current thread until a message is received or the channel is empty and disconnected.
If the channel is empty and not disconnected, this call will block until the receive operation can proceed. If the channel is empty and becomes disconnected, this call will wake up and return an error.
If called on a zero-capacity channel, this method will wait for a send operation to appear on the other side of the channel.
§Examples
use std::thread;
use std::time::Duration;
use crossbeam_channel::{unbounded, RecvError};
let (s, r) = unbounded();
thread::spawn(move || {
thread::sleep(Duration::from_secs(1));
s.send(5).unwrap();
drop(s);
});
assert_eq!(r.recv(), Ok(5));
assert_eq!(r.recv(), Err(RecvError));
Sourcepub fn recv_timeout(&self, timeout: Duration) -> Result<T, RecvTimeoutError>
pub fn recv_timeout(&self, timeout: Duration) -> Result<T, RecvTimeoutError>
Waits for a message to be received from the channel, but only for a limited time.
If the channel is empty and not disconnected, this call will block until the receive operation can proceed or the operation times out. If the channel is empty and becomes disconnected, this call will wake up and return an error.
If called on a zero-capacity channel, this method will wait for a send operation to appear on the other side of the channel.
§Examples
use std::thread;
use std::time::Duration;
use crossbeam_channel::{unbounded, RecvTimeoutError};
let (s, r) = unbounded();
thread::spawn(move || {
thread::sleep(Duration::from_secs(1));
s.send(5).unwrap();
drop(s);
});
assert_eq!(
r.recv_timeout(Duration::from_millis(500)),
Err(RecvTimeoutError::Timeout),
);
assert_eq!(
r.recv_timeout(Duration::from_secs(1)),
Ok(5),
);
assert_eq!(
r.recv_timeout(Duration::from_secs(1)),
Err(RecvTimeoutError::Disconnected),
);
Sourcepub fn recv_deadline(&self, deadline: Instant) -> Result<T, RecvTimeoutError>
pub fn recv_deadline(&self, deadline: Instant) -> Result<T, RecvTimeoutError>
Waits for a message to be received from the channel, but only before a given deadline.
If the channel is empty and not disconnected, this call will block until the receive operation can proceed or the operation times out. If the channel is empty and becomes disconnected, this call will wake up and return an error.
If called on a zero-capacity channel, this method will wait for a send operation to appear on the other side of the channel.
§Examples
use std::thread;
use std::time::{Instant, Duration};
use crossbeam_channel::{unbounded, RecvTimeoutError};
let (s, r) = unbounded();
thread::spawn(move || {
thread::sleep(Duration::from_secs(1));
s.send(5).unwrap();
drop(s);
});
let now = Instant::now();
assert_eq!(
r.recv_deadline(now + Duration::from_millis(500)),
Err(RecvTimeoutError::Timeout),
);
assert_eq!(
r.recv_deadline(now + Duration::from_millis(1500)),
Ok(5),
);
assert_eq!(
r.recv_deadline(now + Duration::from_secs(5)),
Err(RecvTimeoutError::Disconnected),
);
Sourcepub fn is_empty(&self) -> bool
pub fn is_empty(&self) -> bool
Returns true
if the channel is empty.
Note: Zero-capacity channels are always empty.
§Examples
use crossbeam_channel::unbounded;
let (s, r) = unbounded();
assert!(r.is_empty());
s.send(0).unwrap();
assert!(!r.is_empty());
Sourcepub fn is_full(&self) -> bool
pub fn is_full(&self) -> bool
Returns true
if the channel is full.
Note: Zero-capacity channels are always full.
§Examples
use crossbeam_channel::bounded;
let (s, r) = bounded(1);
assert!(!r.is_full());
s.send(0).unwrap();
assert!(r.is_full());
Sourcepub fn len(&self) -> usize
pub fn len(&self) -> usize
Returns the number of messages in the channel.
§Examples
use crossbeam_channel::unbounded;
let (s, r) = unbounded();
assert_eq!(r.len(), 0);
s.send(1).unwrap();
s.send(2).unwrap();
assert_eq!(r.len(), 2);
Sourcepub fn capacity(&self) -> Option<usize>
pub fn capacity(&self) -> Option<usize>
If the channel is bounded, returns its capacity.
§Examples
use crossbeam_channel::{bounded, unbounded};
let (_, r) = unbounded::<i32>();
assert_eq!(r.capacity(), None);
let (_, r) = bounded::<i32>(5);
assert_eq!(r.capacity(), Some(5));
let (_, r) = bounded::<i32>(0);
assert_eq!(r.capacity(), Some(0));
Sourcepub fn iter(&self) -> Iter<'_, T>
pub fn iter(&self) -> Iter<'_, T>
A blocking iterator over messages in the channel.
Each call to next
blocks waiting for the next message and then returns it. However, if
the channel becomes empty and disconnected, it returns None
without blocking.
§Examples
use std::thread;
use crossbeam_channel::unbounded;
let (s, r) = unbounded();
thread::spawn(move || {
s.send(1).unwrap();
s.send(2).unwrap();
s.send(3).unwrap();
drop(s); // Disconnect the channel.
});
// Collect all messages from the channel.
// Note that the call to `collect` blocks until the sender is dropped.
let v: Vec<_> = r.iter().collect();
assert_eq!(v, [1, 2, 3]);
Sourcepub fn try_iter(&self) -> TryIter<'_, T>
pub fn try_iter(&self) -> TryIter<'_, T>
A non-blocking iterator over messages in the channel.
Each call to next
returns a message if there is one ready to be received. The iterator
never blocks waiting for the next message.
§Examples
use std::thread;
use std::time::Duration;
use crossbeam_channel::unbounded;
let (s, r) = unbounded::<i32>();
thread::spawn(move || {
s.send(1).unwrap();
thread::sleep(Duration::from_secs(1));
s.send(2).unwrap();
thread::sleep(Duration::from_secs(2));
s.send(3).unwrap();
});
thread::sleep(Duration::from_secs(2));
// Collect all messages from the channel without blocking.
// The third message hasn't been sent yet so we'll collect only the first two.
let v: Vec<_> = r.try_iter().collect();
assert_eq!(v, [1, 2]);
Sourcepub fn same_channel(&self, other: &Receiver<T>) -> bool
pub fn same_channel(&self, other: &Receiver<T>) -> bool
Returns true
if receivers belong to the same channel.
§Examples
use crossbeam_channel::unbounded;
let (_, r) = unbounded::<usize>();
let r2 = r.clone();
assert!(r.same_channel(&r2));
let (_, r3) = unbounded();
assert!(!r.same_channel(&r3));
Trait Implementations§
Source§impl<'a, T> IntoIterator for &'a Receiver<T>
impl<'a, T> IntoIterator for &'a Receiver<T>
Source§impl<T> IntoIterator for Receiver<T>
impl<T> IntoIterator for Receiver<T>
impl<T> RefUnwindSafe for Receiver<T>
impl<T> Send for Receiver<T>where
T: Send,
impl<T> Sync for Receiver<T>where
T: Send,
impl<T> UnwindSafe for Receiver<T>
Auto Trait Implementations§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the foreground set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red()
and
green()
, which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg()
:
use yansi::{Paint, Color};
painted.fg(Color::White);
Set foreground color to white using white()
.
use yansi::Paint;
painted.white();
Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self
with the background set to
value
.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red()
and
on_green()
, which have the same functionality but
are pithier.
§Example
Set background color to red using fg()
:
use yansi::{Paint, Color};
painted.bg(Color::Red);
Set background color to red using on_red()
.
use yansi::Paint;
painted.on_red();
Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute
value
.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold()
and
underline()
, which have the same functionality
but are pithier.
§Example
Make text bold using attr()
:
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);
Make text bold using using bold()
.
use yansi::Paint;
painted.bold();
Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi
Quirk
value
.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask()
and
wrap()
, which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk()
:
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);
Enable wrapping using wrap()
.
use yansi::Paint;
painted.wrap();
Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting()
due to conflicts with Vec::clear()
.
The clear()
method will be removed in a future release.Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition
value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted
only when both stdout
and stderr
are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);