#[repr(isize)]pub enum FtlError {
Show 14 variants
UnknownSyscall = 0,
TooManyHandles = 1,
HandleNotFound = 2,
HandleNotMovable = 3,
UnexpectedHandleType = 4,
NoPeer = 5,
InvalidArg = 6,
TooLarge = 7,
NotSupported = 8,
WouldBlock = 9,
InvalidState = 10,
TooLargePAddr = 11,
AlreadyMapped = 12,
HandleRightsNotSufficient = 13,
}
Variants§
UnknownSyscall = 0
TooManyHandles = 1
HandleNotFound = 2
HandleNotMovable = 3
UnexpectedHandleType = 4
NoPeer = 5
InvalidArg = 6
TooLarge = 7
NotSupported = 8
WouldBlock = 9
InvalidState = 10
TooLargePAddr = 11
AlreadyMapped = 12
HandleRightsNotSufficient = 13
Trait Implementations§
impl Eq for FtlError
impl StructuralPartialEq for FtlError
Auto Trait Implementations§
impl Freeze for FtlError
impl RefUnwindSafe for FtlError
impl Send for FtlError
impl Sync for FtlError
impl Unpin for FtlError
impl UnwindSafe for FtlError
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