pub struct FallocateRawArgs {
pub fd: RawFd,
pub mode: c_int,
pub offset: off_t,
pub len: off_t,
}Fields§
§fd: RawFd§mode: c_int§offset: off_t§len: off_tTrait Implementations§
Source§impl Clone for FallocateRawArgs
impl Clone for FallocateRawArgs
Source§fn clone(&self) -> FallocateRawArgs
fn clone(&self) -> FallocateRawArgs
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 FallocateRawArgs
impl Debug for FallocateRawArgs
Source§impl PartialEq for FallocateRawArgs
impl PartialEq for FallocateRawArgs
Source§impl SyscallGroupsGetter for FallocateRawArgs
impl SyscallGroupsGetter for FallocateRawArgs
fn syscall_groups(&self) -> BitFlags<SyscallGroups>
Source§impl SyscallNumber for FallocateRawArgs
impl SyscallNumber for FallocateRawArgs
fn syscall_number(&self) -> isize
Source§impl SyscallStopInspect for FallocateRawArgs
impl SyscallStopInspect for FallocateRawArgs
type Args = FallocateArgs
type Result = FallocateModifiedArgs
fn inspect_sysenter(self, inspectee_pid: Pid) -> Self::Args
fn inspect_sysexit( self, inspectee_pid: Pid, regs: &user_regs_struct, ) -> Self::Result
impl Copy for FallocateRawArgs
impl StructuralPartialEq for FallocateRawArgs
Auto Trait Implementations§
impl Freeze for FallocateRawArgs
impl RefUnwindSafe for FallocateRawArgs
impl Send for FallocateRawArgs
impl Sync for FallocateRawArgs
impl Unpin for FallocateRawArgs
impl UnwindSafe for FallocateRawArgs
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