pub enum RingFsError {
OutOfSpace,
FileOverrun,
MissingFileLength,
InUse,
UnrecoverableDisk,
FileTooLarge,
FileNotFound,
FileClosed,
NotAligned,
OutOfBounds,
Unknown,
}Variants§
OutOfSpace
FileOverrun
MissingFileLength
InUse
UnrecoverableDisk
FileTooLarge
FileNotFound
FileClosed
NotAligned
OutOfBounds
Unknown
Trait Implementations§
Source§impl Debug for RingFsError
impl Debug for RingFsError
Source§impl PartialEq for RingFsError
impl PartialEq for RingFsError
impl StructuralPartialEq for RingFsError
Auto Trait Implementations§
impl Freeze for RingFsError
impl RefUnwindSafe for RingFsError
impl Send for RingFsError
impl Sync for RingFsError
impl Unpin for RingFsError
impl UnwindSafe for RingFsError
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