[][src]Struct drone_core::sync::spsc::ring::SendError

pub struct SendError<T> {
    pub value: T,
    pub kind: SendErrorKind,
}

The error type returned from Sender::send.

Fields

value: T

The value which has been not sent.

kind: SendErrorKind

The error kind.

Trait Implementations

impl<T: Display> Display for SendError<T>[src]

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

Auto Trait Implementations

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

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

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

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> ToString for T where
    T: Display + ?Sized
[src]