pub enum InOutError {
IOError(Error),
Errno(Errno),
ParseIntError(ParseIntError),
}Variants§
Trait Implementations§
Source§impl Debug for InOutError
impl Debug for InOutError
Source§impl Display for InOutError
impl Display for InOutError
Source§impl Error for InOutError
impl Error for InOutError
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 InOutError
impl From<Errno> for InOutError
Source§impl From<Error> for InOutError
impl From<Error> for InOutError
Source§impl From<ParseIntError> for InOutError
impl From<ParseIntError> for InOutError
Source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InOutError
impl !RefUnwindSafe for InOutError
impl Send for InOutError
impl Sync for InOutError
impl Unpin for InOutError
impl !UnwindSafe for InOutError
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