Enum futures::AsyncSink
[−]
[src]
pub enum AsyncSink<T> { Ready, NotReady(T), }
The result of an asynchronous attempt to send a value to a sink.
Variants
Ready
The start_send
attempt succeeded, so the sending process has
started; you must use Sink::poll_complete
to drive the send
to completion.
NotReady(T)
The start_send
attempt failed due to the sink being full. The value
being sent is returned, and the current Task
will be automatically
notified again once the sink has room.
Methods
impl<T> AsyncSink<T>
[src]
fn is_ready(&self) -> bool
Returns whether this is AsyncSink::Ready
fn is_not_ready(&self) -> bool
Returns whether this is AsyncSink::NotReady
Trait Implementations
impl<T: Copy> Copy for AsyncSink<T>
[src]
impl<T: Clone> Clone for AsyncSink<T>
[src]
fn clone(&self) -> AsyncSink<T>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more