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