#[non_exhaustive]pub enum RWFileError<I>where
I: Error,{
StorageFull,
IOError(I),
}Expand description
A RWFile-exclusive IO error struct
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl<I> Debug for RWFileError<I>
impl<I> Debug for RWFileError<I>
Source§impl<I> Error for RWFileError<I>where
I: Error,
impl<I> Error for RWFileError<I>where
I: Error,
Source§impl<I> From<I> for RWFileError<I>where
I: Error,
impl<I> From<I> for RWFileError<I>where
I: Error,
Source§impl<I> From<RWFileError<I>> for FSError<I>where
I: Error,
impl<I> From<RWFileError<I>> for FSError<I>where
I: Error,
Source§fn from(value: RWFileError<I>) -> Self
fn from(value: RWFileError<I>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<I> Freeze for RWFileError<I>where
I: Freeze,
impl<I> RefUnwindSafe for RWFileError<I>where
I: RefUnwindSafe,
impl<I> Send for RWFileError<I>where
I: Send,
impl<I> Sync for RWFileError<I>where
I: Sync,
impl<I> Unpin for RWFileError<I>where
I: Unpin,
impl<I> UnwindSafe for RWFileError<I>where
I: UnwindSafe,
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