pub enum SendError<S, A> {
Client(S),
Api(A),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<S, A> Freeze for SendError<S, A>
impl<S, A> RefUnwindSafe for SendError<S, A>where
S: RefUnwindSafe,
A: RefUnwindSafe,
impl<S, A> Send for SendError<S, A>
impl<S, A> Sync for SendError<S, A>
impl<S, A> Unpin for SendError<S, A>
impl<S, A> UnwindSafe for SendError<S, A>where
S: UnwindSafe,
A: 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