Struct polyfuse::op::Fallocate[][src]

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

Allocate requested space.

If this operation is successful, the filesystem shall not report the error caused by the lack of free spaces to subsequent write requests.

Implementations

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

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

Return the number of target inode to be allocated the space.

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

Return the handle for opened file.

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

Return the starting point of region to be allocated.

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

Return the length of region to be allocated.

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

Return the mode that specifies how to allocate the region.

See fallocate(2) for details.

Trait Implementations

impl Debug for Fallocate<'_>[src]

Auto Trait Implementations

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

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

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

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

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