pub struct SyscallArgs { /* private fields */ }Available on crate feature
syscall-injection only.Expand description
Arguments to be passed to a system call
Should be converted to using IntoSyscallArgs. Conversion is handled generically
by syscall.
Implementations§
Source§impl SyscallArgs
impl SyscallArgs
pub fn iter_args(&self) -> impl Iterator<Item = target_ulong> + '_
Auto Trait Implementations§
impl Freeze for SyscallArgs
impl RefUnwindSafe for SyscallArgs
impl Send for SyscallArgs
impl Sync for SyscallArgs
impl Unpin for SyscallArgs
impl UnsafeUnpin for SyscallArgs
impl UnwindSafe for SyscallArgs
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