pub enum PackingError {
TooBigToRepresent,
Bincode(Box<ErrorKind>),
}
Expand description
Error enum which arise from failing to pack a structure implementing Message
Variants§
Trait Implementations§
Source§impl Debug for PackingError
impl Debug for PackingError
Source§impl From<PackingError> for SendError
impl From<PackingError> for SendError
Source§fn from(e: PackingError) -> Self
fn from(e: PackingError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackingError
impl !RefUnwindSafe for PackingError
impl Send for PackingError
impl Sync for PackingError
impl Unpin for PackingError
impl !UnwindSafe for PackingError
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