pub type StartSend<T, E> = Result<AsyncSink<T>, E>;Expand description
Return type of the Sink::start_send method, indicating the outcome of a
send attempt. See AsyncSink for more details.
Aliased Type§
pub enum StartSend<T, E> {
Ok(AsyncSink<T>),
Err(E),
}