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

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]

[src]

Change the NotReady value of this AsyncSink with the closure provided

[src]

Returns whether this is AsyncSink::Ready

[src]

Returns whether this is AsyncSink::NotReady

Trait Implementations

impl<T: Copy> Copy for AsyncSink<T>
[src]

impl<T: Clone> Clone for AsyncSink<T>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: Debug> Debug for AsyncSink<T>
[src]

[src]

Formats the value using the given formatter.

impl<T: PartialEq> PartialEq for AsyncSink<T>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.