#[repr(C)]pub struct FuseCopyFileRangeIn {
pub fh_in: u64,
pub off_in: u64,
pub nodeid_out: u64,
pub fh_out: u64,
pub off_out: u64,
pub len: u64,
pub flags: u64,
}Expand description
FUSE copy file range request input fuse_copy_file_range_in
Fields§
§fh_in: u64The file handler of the source file
off_in: u64The starting point from were the data should be read
nodeid_out: u64The i-number or the destination file
fh_out: u64The file handler of the destination file
off_out: u64The starting point where the data should be written
len: u64The maximum size of the data to copy
flags: u64The flags passed along with the copy_file_range() syscall
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FuseCopyFileRangeIn
impl RefUnwindSafe for FuseCopyFileRangeIn
impl Send for FuseCopyFileRangeIn
impl Sync for FuseCopyFileRangeIn
impl Unpin for FuseCopyFileRangeIn
impl UnwindSafe for FuseCopyFileRangeIn
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