#[repr(usize)]pub enum SyscallType {
Unknown = 0,
DebugMsg = 1,
Write = 2,
}Variants§
Trait Implementations§
Source§impl Clone for SyscallType
impl Clone for SyscallType
Source§fn clone(&self) -> SyscallType
fn clone(&self) -> SyscallType
Returns a duplicate 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 SyscallType
impl Debug for SyscallType
Source§impl From<usize> for SyscallType
impl From<usize> for SyscallType
Source§fn from(number: usize) -> SyscallType
fn from(number: usize) -> SyscallType
Converts to this type from the input type.
impl Copy for SyscallType
Auto Trait Implementations§
impl Freeze for SyscallType
impl RefUnwindSafe for SyscallType
impl Send for SyscallType
impl Sync for SyscallType
impl Unpin for SyscallType
impl UnwindSafe for SyscallType
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