pub enum TrySendError<T> {
Closed(T),
Full(T),
}
Expand description
A bounded channel error when trying to send a message (transparently wraps the inner error type)
Variants§
Implementations§
source§impl<T> TrySendError<T>
impl<T> TrySendError<T>
sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Returns the inner value.
sourcepub fn is_disconnected(&self) -> bool
pub fn is_disconnected(&self) -> bool
Returns true
if we could not send to channel as it was disconnected
sourcepub fn transform_inner<U, F>(self, f: F) -> TrySendError<U>where
F: FnOnce(T) -> U,
pub fn transform_inner<U, F>(self, f: F) -> TrySendError<U>where
F: FnOnce(T) -> U,
Transform the inner value.
sourcepub fn try_transform_inner<U, F, E>(self, f: F) -> Result<TrySendError<U>, E>
pub fn try_transform_inner<U, F, E>(self, f: F) -> Result<TrySendError<U>, E>
Transform the inner value, fail-able version.
Trait Implementations§
source§impl<T: Debug> Debug for TrySendError<T>
impl<T: Debug> Debug for TrySendError<T>
source§impl<T> Display for TrySendError<T>
impl<T> Display for TrySendError<T>
source§impl<T> Error for TrySendError<T>
impl<T> Error for TrySendError<T>
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl<T> From<TrySendError<MaybeTimeOfFlight<T>>> for TrySendError<T>
impl<T> From<TrySendError<MaybeTimeOfFlight<T>>> for TrySendError<T>
source§fn from(error: FuturesTrySendError<MaybeTimeOfFlight<T>>) -> Self
fn from(error: FuturesTrySendError<MaybeTimeOfFlight<T>>) -> Self
Converts to this type from the input type.
source§impl<T> From<TrySendError<T>> for TrySendError<T>
impl<T> From<TrySendError<T>> for TrySendError<T>
source§fn from(error: FuturesTrySendError<T>) -> Self
fn from(error: FuturesTrySendError<T>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for TrySendError<T>where
T: Freeze,
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more