Struct polyfuse::op::CopyFileRange[][src]

pub struct CopyFileRange<'op> { /* fields omitted */ }

Copy a range of data from an opened file to another.

The length of copied data must be replied using ReplyWrite.

Implementations

impl<'op> CopyFileRange<'op>[src]

pub fn ino_in(&self) -> u64[src]

Return the inode number of source file.

pub fn fh_in(&self) -> u64[src]

Return the file handle of source file.

pub fn offset_in(&self) -> u64[src]

Return the starting point of source file where the data should be read.

pub fn ino_out(&self) -> u64[src]

Return the inode number of target file.

pub fn fh_out(&self) -> u64[src]

Return the file handle of target file.

pub fn offset_out(&self) -> u64[src]

Return the starting point of target file where the data should be written.

pub fn length(&self) -> u64[src]

Return the maximum size of data to copy.

pub fn flags(&self) -> u64[src]

Return the flag value for copy_file_range syscall.

Trait Implementations

impl Debug for CopyFileRange<'_>[src]

Auto Trait Implementations

impl<'op> RefUnwindSafe for CopyFileRange<'op>[src]

impl<'op> Send for CopyFileRange<'op>[src]

impl<'op> Sync for CopyFileRange<'op>[src]

impl<'op> Unpin for CopyFileRange<'op>[src]

impl<'op> UnwindSafe for CopyFileRange<'op>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.