pub struct IOErrorInfo {
pub kind: ErrorKind,
pub message: String,
}
Expand description
- The error info from
std::io::Error
but this must contains the message
Fields§
§kind: ErrorKind
§message: String
Implementations§
Trait Implementations§
Source§impl Clone for IOErrorInfo
impl Clone for IOErrorInfo
Source§fn clone(&self) -> IOErrorInfo
fn clone(&self) -> IOErrorInfo
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for IOErrorInfo
impl RefUnwindSafe for IOErrorInfo
impl Send for IOErrorInfo
impl Sync for IOErrorInfo
impl Unpin for IOErrorInfo
impl UnwindSafe for IOErrorInfo
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