pub enum ComError {
SendErr(SendErr),
ReceiveErr(ReceiveErr),
}Expand description
communication error
Variants§
SendErr(SendErr)
ReceiveErr(ReceiveErr)
Trait Implementations§
Source§impl From<ReceiveErr> for ComError
impl From<ReceiveErr> for ComError
Source§fn from(value: ReceiveErr) -> Self
fn from(value: ReceiveErr) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ComError
impl !RefUnwindSafe for ComError
impl Send for ComError
impl Sync for ComError
impl Unpin for ComError
impl !UnwindSafe for ComError
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