pub enum FSError<E> {
ObjNotFound,
Full,
OutOfBounds,
UnexpectedEof,
WriteZero,
IO(E),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl<E> Freeze for FSError<E>where
E: Freeze,
impl<E> ObjSafe for FSError<E>where
E: ObjSafe,
impl<E> RefUnwindSafe for FSError<E>where
E: RefUnwindSafe,
impl<E> Send for FSError<E>where
E: Send,
impl<E> Sync for FSError<E>where
E: Sync,
impl<E> Unpin for FSError<E>where
E: Unpin,
impl<E> UnwindSafe for FSError<E>where
E: 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