Enum futures_intrusive::channel::TrySendError
source · pub enum TrySendError<T> {
Full(T),
Closed(T),
}
Expand description
The error which is returned when trying to send on a channel without waiting fails.
Variants
Full(T)
The channel is full.
Closed(T)
The channel was closed.
Implementations
sourceimpl<T> TrySendError<T>
impl<T> TrySendError<T>
Trait Implementations
sourceimpl<T: Debug> Debug for TrySendError<T>
impl<T: Debug> Debug for TrySendError<T>
sourceimpl<T: PartialEq> PartialEq<TrySendError<T>> for TrySendError<T>
impl<T: PartialEq> PartialEq<TrySendError<T>> for TrySendError<T>
sourcefn eq(&self, other: &TrySendError<T>) -> bool
fn eq(&self, other: &TrySendError<T>) -> bool
impl<T> StructuralPartialEq for TrySendError<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for TrySendError<T>where
T: RefUnwindSafe,
impl<T> Send for TrySendError<T>where
T: Send,
impl<T> Sync for TrySendError<T>where
T: Sync,
impl<T> Unpin for TrySendError<T>where
T: Unpin,
impl<T> UnwindSafe for TrySendError<T>where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more