Struct polyfuse::op::Write[][src]

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

Write data to a file.

If the data is successfully written, the filesystem must send the amount of the written data using ReplyWrite.

When the file is opened in direct_io mode, the result replied will be reflected in the caller's result of write syscall.

When the file is not opened in direct_io mode (i.e. the page caching is enabled), the filesystem should receive exactly the specified range of file content from the kernel.

Implementations

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

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

Return the inode number to be written.

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

Return the handle of opened file.

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

Return the starting position of contents to be written.

pub fn size(&self) -> u32[src]

Return the length of contents to be written.

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

Return the flags specified at opening the file.

pub fn lock_owner(&self) -> Option<LockOwner>[src]

Return the identifier of lock owner.

Trait Implementations

impl Debug for Write<'_>[src]

Auto Trait Implementations

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

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

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

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

impl<'op> UnwindSafe for Write<'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.