[][src]Struct tokio::sync::oneshot::Sender

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

Sends a value to the associated Receiver.

Instances are created by the channel function.

Methods

impl<T> Sender<T>[src]

pub fn send(self, t: T) -> Result<(), T>[src]

Completes this oneshot with a successful result.

The function consumes self and notifies the Receiver handle that a value is ready to be received.

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.

pub fn poll_close(&mut self) -> Result<Async<()>, ()>[src]

Check if the associated Receiver handle has been dropped.

Return values

If Ok(Ready) is returned then the associated Receiver has been dropped, which means any work required for sending should be canceled.

If Ok(NotReady) is returned then the associated Receiver is still alive and may be able to receive a message if sent. The current task is registered to receive a notification if the Receiver handle goes away.

pub fn is_closed(&self) -> bool[src]

Check if the associated Receiver handle has been dropped.

Unlike poll_close, this function does not register a task for wakeup upon close.

Trait Implementations

impl<T> Drop for Sender<T>[src]

impl<T> Debug for Sender<T> where
    T: Debug
[src]

Auto Trait Implementations

impl<T> Send for Sender<T> where
    T: Send

impl<T> Sync for Sender<T> where
    T: Send

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T