[−][src]Enum tokio::prelude::AsyncSink
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.
Methods
impl<T> AsyncSink<T>
[src]
pub fn map<F, U>(self, f: F) -> AsyncSink<U> where
F: FnOnce(T) -> U,
[src]
F: FnOnce(T) -> U,
Change the NotReady value of this AsyncSink
with the closure provided
pub fn is_ready(&self) -> bool
[src]
Returns whether this is AsyncSink::Ready
pub fn is_not_ready(&self) -> bool
[src]
Returns whether this is AsyncSink::NotReady
Trait Implementations
impl<T> Copy for AsyncSink<T> where
T: Copy,
[src]
T: Copy,
impl<T> Clone for AsyncSink<T> where
T: Clone,
[src]
T: Clone,
impl<T> PartialEq<AsyncSink<T>> for AsyncSink<T> where
T: PartialEq<T>,
[src]
T: PartialEq<T>,
impl<T> Debug for AsyncSink<T> where
T: Debug,
[src]
T: Debug,
Auto Trait Implementations
impl<T> Send for AsyncSink<T> where
T: Send,
T: Send,
impl<T> Unpin for AsyncSink<T> where
T: Unpin,
T: Unpin,
impl<T> Sync for AsyncSink<T> where
T: Sync,
T: Sync,
impl<T> UnwindSafe for AsyncSink<T> where
T: UnwindSafe,
T: UnwindSafe,
impl<T> RefUnwindSafe for AsyncSink<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
ⓘImportant traits for &'_ mut Wfn borrow_mut(&mut self) -> &mut T
[src]
ⓘImportant traits for &'_ mut W
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,