Enum futures::AsyncSink [−][src]
pub enum AsyncSink<T> { Ready, NotReady(T), }
Expand description
The result of an asynchronous attempt to send a value to a sink.
Variants
The start_send
attempt succeeded, so the sending process has
started; you must use Sink::poll_complete
to drive the send
to completion.
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.
Implementations
Change the NotReady value of this AsyncSink
with the closure provided
Returns whether this is AsyncSink::NotReady
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for AsyncSink<T> where
T: RefUnwindSafe,
impl<T> UnwindSafe for AsyncSink<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more