pub enum SyscallData {
Args([u64; 6]),
Ret(i64),
}Variants§
Trait Implementations§
Source§impl Clone for SyscallData
impl Clone for SyscallData
Source§fn clone(&self) -> SyscallData
fn clone(&self) -> SyscallData
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 SyscallData
impl Debug for SyscallData
impl Copy for SyscallData
Auto Trait Implementations§
impl Freeze for SyscallData
impl RefUnwindSafe for SyscallData
impl Send for SyscallData
impl Sync for SyscallData
impl Unpin for SyscallData
impl UnwindSafe for SyscallData
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