Struct rbatis_core::runtime::channel::SendError [−]
pub struct SendError<T>(pub T);
Expand description
An error returned from Sender::send()
.
Received because the channel is closed.
Tuple Fields
0: T
Implementations
impl<T> SendError<T>
impl<T> SendError<T>
pub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Unwraps the message that couldn’t be sent.
Trait Implementations
impl<T> StructuralEq for SendError<T>
impl<T> StructuralPartialEq for SendError<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for SendError<T> where
T: RefUnwindSafe,
impl<T> UnwindSafe for SendError<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more