pub struct CopyFileRangeArgs {
pub fd_in: RawFd,
pub off_in: InspectResult<off_t>,
pub fd_out: RawFd,
pub off_out: InspectResult<off_t>,
pub len: size_t,
pub flags: c_uint,
}Fields§
§fd_in: RawFd§off_in: InspectResult<off_t>§fd_out: RawFd§off_out: InspectResult<off_t>§len: size_t§flags: c_uintTrait Implementations§
Source§impl Clone for CopyFileRangeArgs
impl Clone for CopyFileRangeArgs
Source§fn clone(&self) -> CopyFileRangeArgs
fn clone(&self) -> CopyFileRangeArgs
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 CopyFileRangeArgs
impl Debug for CopyFileRangeArgs
Source§impl From<CopyFileRangeArgs> for SyscallArgs
impl From<CopyFileRangeArgs> for SyscallArgs
Source§fn from(args: CopyFileRangeArgs) -> Self
fn from(args: CopyFileRangeArgs) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CopyFileRangeArgs
impl PartialEq for CopyFileRangeArgs
Source§impl SyscallGroupsGetter for CopyFileRangeArgs
impl SyscallGroupsGetter for CopyFileRangeArgs
fn syscall_groups(&self) -> BitFlags<SyscallGroups>
Source§impl SyscallNumber for CopyFileRangeArgs
impl SyscallNumber for CopyFileRangeArgs
fn syscall_number(&self) -> isize
impl StructuralPartialEq for CopyFileRangeArgs
Auto Trait Implementations§
impl Freeze for CopyFileRangeArgs
impl RefUnwindSafe for CopyFileRangeArgs
impl Send for CopyFileRangeArgs
impl Sync for CopyFileRangeArgs
impl Unpin for CopyFileRangeArgs
impl UnwindSafe for CopyFileRangeArgs
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