Enum quicksink::Action [−][src]
pub enum Action<A> { Send(A), Flush, Close, }
The command given to the closure so that it can perform appropriate action.
Presumably the closure encapsulates a resource to perform I/O. The commands
correspond to methods of the Sink
trait and provide the closure with
sufficient information to know what kind of action to perform with it.
Variants
Send the given value.
Corresponds to Sink::start_send
.
Flush the resource.
Corresponds to Sink::poll_flush
.
Close the resource.
Corresponds to Sink::poll_close
.
Trait Implementations
impl<A: Eq> Eq for Action<A>
[src]
impl<A> StructuralEq for Action<A>
[src]
impl<A> StructuralPartialEq for Action<A>
[src]
Auto Trait Implementations
impl<A> RefUnwindSafe for Action<A> where
A: RefUnwindSafe,
A: RefUnwindSafe,
impl<A> Send for Action<A> where
A: Send,
A: Send,
impl<A> Sync for Action<A> where
A: Sync,
A: Sync,
impl<A> Unpin for Action<A> where
A: Unpin,
A: Unpin,
impl<A> UnwindSafe for Action<A> where
A: UnwindSafe,
A: UnwindSafe,