pub struct IoError { /* private fields */ }Expand description
Copyable & cloneable I/O error type represented by the error kind function.
Available only when both std and derive features are present.
§Example
use amplify::{IoError, Error, Display, From};
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, From, Debug, Display, Error)]
enum Error {
    #[from(std::io::Error)]
    #[display(inner)]
    Io(IoError),
}Implementations§
Trait Implementations§
Source§impl Error for IoError
 
impl Error for IoError
1.30.0 · 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 Ord for IoError
 
impl Ord for IoError
Source§impl PartialOrd for IoError
 
impl PartialOrd for IoError
impl Eq for IoError
Auto Trait Implementations§
impl Freeze for IoError
impl !RefUnwindSafe for IoError
impl Send for IoError
impl Sync for IoError
impl Unpin for IoError
impl !UnwindSafe for IoError
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