Struct TrySendError

struct TrySendError<T> { ... }

The error type returned from try_send.

Implementations

impl<T> TrySendError<T>

fn is_full(self: &Self) -> bool

Returns true if this error is a result of the channel being full.

fn is_disconnected(self: &Self) -> bool

Returns true if this error is a result of the receiver being dropped.

fn into_inner(self: Self) -> T

Returns the message that was attempted to be sent but failed.

fn into_send_error(self: Self) -> SendError

Drops the message and converts into a SendError.

impl<T> Any for TrySendError<T>

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for TrySendError<T>

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for TrySendError<T>

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> CloneToUninit for TrySendError<T>

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> Debug for TrySendError<T>

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl<T> Display for TrySendError<T>

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl<T> Freeze for TrySendError<T>

impl<T> From for TrySendError<T>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> RefUnwindSafe for TrySendError<T>

impl<T> Send for TrySendError<T>

impl<T> StructuralPartialEq for TrySendError<T>

impl<T> Sync for TrySendError<T>

impl<T> ToOwned for TrySendError<T>

fn to_owned(self: &Self) -> T
fn clone_into(self: &Self, target: &mut T)

impl<T> ToString for TrySendError<T>

fn to_string(self: &Self) -> String

impl<T> Unpin for TrySendError<T>

impl<T> UnsafeUnpin for TrySendError<T>

impl<T> UnwindSafe for TrySendError<T>

impl<T, U> Into for TrySendError<T>

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for TrySendError<T>

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for TrySendError<T>

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>

impl<T: $crate::clone::Clone> Clone for TrySendError<T>

fn clone(self: &Self) -> TrySendError<T>

impl<T: $crate::cmp::Eq> Eq for TrySendError<T>

impl<T: $crate::cmp::PartialEq> PartialEq for TrySendError<T>

fn eq(self: &Self, other: &TrySendError<T>) -> bool

impl<T: core::any::Any> Error for TrySendError<T>