pub struct IoError {
pub file: String,
pub error: Error,
}Expand description
Variant of Error representing an error that occurred during file I/O
Fields§
§file: StringThe file that the operation was working on or related to
error: ErrorThe actual std::io::Error that occurred
Trait Implementations§
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