[][src]Struct futures_intrusive::channel::shared::GenericStateSender

pub struct GenericStateSender<MutexType, T> where
    MutexType: RawMutex,
    T: Clone + 'static, 
{ /* fields omitted */ }

The sending side of a channel which can be used to exchange values between concurrent tasks.

Values can be sent into the channel through send.

Methods

impl<MutexType, T> GenericStateSender<MutexType, T> where
    MutexType: RawMutex + 'static,
    T: Clone
[src]

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

Writes a single value to the channel.

This will notify waiters about the availability of the value. If a value had been written to the channel before, or if the channel is closed, the new value will be rejected and returned inside the error variant.

Trait Implementations

impl<MutexType, T> Clone for GenericStateSender<MutexType, T> where
    MutexType: RawMutex,
    T: Clone
[src]

impl<MutexType, T> Debug for GenericStateSender<MutexType, T> where
    MutexType: RawMutex,
    T: Clone
[src]

impl<MutexType, T> Drop for GenericStateSender<MutexType, T> where
    MutexType: RawMutex,
    T: Clone
[src]

Auto Trait Implementations

impl<MutexType, T> !RefUnwindSafe for GenericStateSender<MutexType, T>

impl<MutexType, T> Send for GenericStateSender<MutexType, T> where
    MutexType: Send + Sync,
    T: Send

impl<MutexType, T> Sync for GenericStateSender<MutexType, T> where
    MutexType: Send + Sync,
    T: Send

impl<MutexType, T> Unpin for GenericStateSender<MutexType, T>

impl<MutexType, T> !UnwindSafe for GenericStateSender<MutexType, T>

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> 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.