pub enum SerialError {
LinError(Error),
SerialError(Error),
}Variants§
Trait Implementations§
Source§impl Debug for SerialError
impl Debug for SerialError
Source§impl From<Error> for SerialError
impl From<Error> for SerialError
Source§fn from(error: Error) -> SerialError
fn from(error: Error) -> SerialError
Converts to this type from the input type.
Source§impl From<Error> for SerialError
impl From<Error> for SerialError
Source§fn from(error: Error) -> SerialError
fn from(error: Error) -> SerialError
Converts to this type from the input type.
Source§impl From<Error> for SerialError
impl From<Error> for SerialError
Source§fn from(error: Error) -> SerialError
fn from(error: Error) -> SerialError
Converts to this type from the input type.
Source§impl From<SerialError> for Error
impl From<SerialError> for Error
Source§fn from(error: SerialError) -> Error
fn from(error: SerialError) -> Error
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SerialError
impl RefUnwindSafe for SerialError
impl Send for SerialError
impl Sync for SerialError
impl Unpin for SerialError
impl UnwindSafe for SerialError
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