Struct af_core::channel::SendError[][src]

pub struct SendError<M> {
    pub msg: M,
    pub reason: SendErrorReason,
}

An error returned from a Sender::send() or Sender::try_send() call.

Fields

msg: M

The message that failed to send.

reason: SendErrorReason

The reason for this error.

Trait Implementations

impl<M: Clone> Clone for SendError<M>[src]

impl<M: Copy> Copy for SendError<M>[src]

impl<M> Debug for SendError<M>[src]

impl<M> Display for SendError<M>[src]

impl<M> Error for SendError<M>[src]

Auto Trait Implementations

impl<M> RefUnwindSafe for SendError<M> where
    M: RefUnwindSafe

impl<M> Send for SendError<M> where
    M: Send

impl<M> Sync for SendError<M> where
    M: Sync

impl<M> Unpin for SendError<M> where
    M: Unpin

impl<M> UnwindSafe for SendError<M> where
    M: UnwindSafe

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> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,