[][src]Struct futures::unsync::mpsc::UnboundedSender

pub struct UnboundedSender<T>(_);

The transmission end of an unbounded channel.

This is created by the unbounded function.

Methods

impl<T> UnboundedSender<T>[src]

pub fn unbounded_send(&self, msg: T) -> Result<(), SendError<T>>[src]

Sends the provided message along this channel.

This is an unbounded sender, so this function differs from Sink::send by ensuring the return type reflects that the channel is always ready to receive messages.

Trait Implementations

impl<T> Sink for UnboundedSender<T>[src]

type SinkItem = T

The type of value that the sink accepts.

type SinkError = SendError<T>

The type of value produced by the sink when an error occurs.

impl<'a, T> Sink for &'a UnboundedSender<T>[src]

type SinkItem = T

The type of value that the sink accepts.

type SinkError = SendError<T>

The type of value produced by the sink when an error occurs.

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

impl<T> Clone for UnboundedSender<T>[src]

Auto Trait Implementations

impl<T> Unpin for UnboundedSender<T>

impl<T> !Send for UnboundedSender<T>

impl<T> !Sync for UnboundedSender<T>

impl<T> !UnwindSafe for UnboundedSender<T>

impl<T> !RefUnwindSafe for UnboundedSender<T>

Blanket Implementations

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.