#[repr(usize)]pub enum Syscall {
Show 13 variants
READ = 0,
WRITE = 1,
OPEN = 2,
CLOSE = 3,
FSTAT = 5,
LSEEK = 8,
MMAP = 9,
MPROTECT = 10,
MUNMAP = 11,
EXIT = 60,
OPENAT = 257,
OPENAT4 = 258,
TODO = 18_446_744_073_709_551_615,
}Variants§
READ = 0
WRITE = 1
OPEN = 2
CLOSE = 3
FSTAT = 5
LSEEK = 8
MMAP = 9
MPROTECT = 10
MUNMAP = 11
EXIT = 60
OPENAT = 257
OPENAT4 = 258
TODO = 18_446_744_073_709_551_615
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Syscall
impl RefUnwindSafe for Syscall
impl Send for Syscall
impl Sync for Syscall
impl Unpin for Syscall
impl UnwindSafe for Syscall
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