pub enum SerialError {
IoError(Error),
OsError {
code: u32,
desc: String,
},
LibraryError(String),
}
Expand description
Serial port error type
Variants§
Trait Implementations§
Source§impl Debug for SerialError
impl Debug for SerialError
Source§impl Display for SerialError
impl Display for SerialError
Source§impl Error for SerialError
impl Error for SerialError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<Errno> for SerialError
impl From<Errno> for SerialError
Source§fn from(e: Errno) -> SerialError
fn from(e: Errno) -> SerialError
Converts to this type from the input type.
Source§impl From<SerialError> for Error
impl From<SerialError> for Error
Source§fn from(e: SerialError) -> Self
fn from(e: SerialError) -> Self
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