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

pub struct Fallocate<'a> { /* 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.

Methods

impl<'a> Fallocate<'a>[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<'a> RefUnwindSafe for Fallocate<'a>

impl<'a> Send for Fallocate<'a>

impl<'a> Sync for Fallocate<'a>

impl<'a> Unpin for Fallocate<'a>

impl<'a> UnwindSafe for Fallocate<'a>

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, 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.