pub enum TimeoutReceiveError {
NotTimedOut(ReceiveError),
TimedOut,
}Expand description
Was there a ReceiveError or a time-out?
Variants§
NotTimedOut(ReceiveError)
TimedOut
Trait Implementations§
Source§impl Debug for TimeoutReceiveError
impl Debug for TimeoutReceiveError
Auto Trait Implementations§
impl Freeze for TimeoutReceiveError
impl RefUnwindSafe for TimeoutReceiveError
impl Send for TimeoutReceiveError
impl Sync for TimeoutReceiveError
impl Unpin for TimeoutReceiveError
impl UnwindSafe for TimeoutReceiveError
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