#[non_exhaustive]#[repr(u8)]pub enum SyscallArgError {
GeneralInvalid = 1,
InvalidUserPointer = 2,
NotValidUtf8 = 3,
InvalidHeapIncrement = 4,
DuplicateFileMappings = 5,
InvalidNanoseconds = 6,
}
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.
GeneralInvalid = 1
InvalidUserPointer = 2
NotValidUtf8 = 3
InvalidHeapIncrement = 4
DuplicateFileMappings = 5
InvalidNanoseconds = 6
Trait Implementations§
source§impl Clone for SyscallArgError
impl Clone for SyscallArgError
source§fn clone(&self) -> SyscallArgError
fn clone(&self) -> SyscallArgError
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SyscallArgError
impl Debug for SyscallArgError
source§impl PartialEq for SyscallArgError
impl PartialEq for SyscallArgError
source§fn eq(&self, other: &SyscallArgError) -> bool
fn eq(&self, other: &SyscallArgError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for SyscallArgError
impl Eq for SyscallArgError
impl StructuralEq for SyscallArgError
impl StructuralPartialEq for SyscallArgError
Auto Trait Implementations§
impl RefUnwindSafe for SyscallArgError
impl Send for SyscallArgError
impl Sync for SyscallArgError
impl Unpin for SyscallArgError
impl UnwindSafe for SyscallArgError
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