pub struct CopyFileRangeRawArgs {
pub fd_in: RawFd,
pub off_in: *mut off_t,
pub fd_out: RawFd,
pub off_out: *mut off_t,
pub len: size_t,
pub flags: c_uint,
}Fields§
§fd_in: RawFd§off_in: *mut off_t§fd_out: RawFd§off_out: *mut off_t§len: size_t§flags: c_uintTrait Implementations§
Source§impl Clone for CopyFileRangeRawArgs
impl Clone for CopyFileRangeRawArgs
Source§fn clone(&self) -> CopyFileRangeRawArgs
fn clone(&self) -> CopyFileRangeRawArgs
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 CopyFileRangeRawArgs
impl Debug for CopyFileRangeRawArgs
Source§impl PartialEq for CopyFileRangeRawArgs
impl PartialEq for CopyFileRangeRawArgs
Source§impl SyscallGroupsGetter for CopyFileRangeRawArgs
impl SyscallGroupsGetter for CopyFileRangeRawArgs
fn syscall_groups(&self) -> BitFlags<SyscallGroups>
Source§impl SyscallNumber for CopyFileRangeRawArgs
impl SyscallNumber for CopyFileRangeRawArgs
fn syscall_number(&self) -> isize
Source§impl SyscallStopInspect for CopyFileRangeRawArgs
impl SyscallStopInspect for CopyFileRangeRawArgs
type Args = CopyFileRangeArgs
type Result = CopyFileRangeModifiedArgs
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 CopyFileRangeRawArgs
impl StructuralPartialEq for CopyFileRangeRawArgs
Auto Trait Implementations§
impl Freeze for CopyFileRangeRawArgs
impl RefUnwindSafe for CopyFileRangeRawArgs
impl !Send for CopyFileRangeRawArgs
impl !Sync for CopyFileRangeRawArgs
impl Unpin for CopyFileRangeRawArgs
impl UnwindSafe for CopyFileRangeRawArgs
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