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 (const: unstable) · 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
Available on x86-64 or AArch64 or RISC-V RV64 only.
impl From<CopyFileRangeArgs> for SyscallArgs
Available on x86-64 or AArch64 or RISC-V RV64 only.
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§fn eq(&self, other: &CopyFileRangeArgs) -> bool
fn eq(&self, other: &CopyFileRangeArgs) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl SyscallGroupsGetter for CopyFileRangeArgs
Available on x86-64 or AArch64 or RISC-V RV64 only.
impl SyscallGroupsGetter for CopyFileRangeArgs
Available on x86-64 or AArch64 or RISC-V RV64 only.
fn syscall_groups(&self) -> BitFlags<SyscallGroups>
Source§impl SyscallNumber for CopyFileRangeArgs
Available on x86-64 or AArch64 or RISC-V RV64 only.
impl SyscallNumber for CopyFileRangeArgs
Available on x86-64 or AArch64 or RISC-V RV64 only.
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 UnsafeUnpin 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