Struct ntex::channel::pool::Sender[][src]

pub struct Sender<T> { /* fields omitted */ }
Expand description

Represents the completion half of a oneshot through which the result of a computation is signaled.

Implementations

Completes this oneshot with a successful result.

This function will consume self and indicate to the other end, the Receiver, that the error provided is the result of the computation this represents.

If the value is successfully enqueued for the remote end to receive, then Ok(()) is returned. If the receiving end was dropped before this function was called, however, then Err is returned with the value provided.

Tests to see whether this Sender’s corresponding Receiver has gone away.

Polls the channel to determine if receiving path is dropped

Trait Implementations

Formats the value using the given formatter. Read more

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more