Enum tokio::prelude::AsyncSink [−][src]
pub enum AsyncSink<T> {
Ready,
NotReady(T),
}The result of an asynchronous attempt to send a value to a sink.
Variants
ReadyThe 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]
impl<T> AsyncSink<T>pub fn map<F, U>(self, f: F) -> AsyncSink<U> where
F: FnOnce(T) -> U, [src]
pub fn map<F, U>(self, f: F) -> AsyncSink<U> where
F: FnOnce(T) -> U, Change the NotReady value of this AsyncSink with the closure provided
pub fn is_ready(&self) -> bool[src]
pub fn is_ready(&self) -> boolReturns whether this is AsyncSink::Ready
pub fn is_not_ready(&self) -> bool[src]
pub fn is_not_ready(&self) -> boolReturns whether this is AsyncSink::NotReady
Trait Implementations
impl<T> PartialEq<AsyncSink<T>> for AsyncSink<T> where
T: PartialEq<T>, [src]
impl<T> PartialEq<AsyncSink<T>> for AsyncSink<T> where
T: PartialEq<T>, fn eq(&self, other: &AsyncSink<T>) -> bool[src]
fn eq(&self, other: &AsyncSink<T>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &AsyncSink<T>) -> bool[src]
fn ne(&self, other: &AsyncSink<T>) -> boolThis method tests for !=.
impl<T> Debug for AsyncSink<T> where
T: Debug, [src]
impl<T> Debug for AsyncSink<T> where
T: Debug, fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl<T> Copy for AsyncSink<T> where
T: Copy, [src]
impl<T> Copy for AsyncSink<T> where
T: Copy, impl<T> Clone for AsyncSink<T> where
T: Clone, [src]
impl<T> Clone for AsyncSink<T> where
T: Clone,