[][src]Struct yarf_sys::fuse_file_info

#[repr(C)]
pub struct fuse_file_info { pub flags: c_int, pub fh_old: c_ulong, pub writepage: c_int, pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4], u32>, pub fh: u64, pub lock_owner: u64, }

Information about open files

Changed in version 2.5

Fields

flags: c_int

Open flags. Available in open() and release()

fh_old: c_ulong

Old file handle, don't use

writepage: c_int

In case of a write operation indicates if this was caused by a writepage

_bitfield_1: __BindgenBitfieldUnit<[u8; 4], u32>fh: u64

File handle. May be filled in by filesystem in open(). Available in all other file operations

lock_owner: u64

Lock owner id. Available in locking operations and flush

Trait Implementations

impl Copy for fuse_file_info[src]

impl Clone for fuse_file_info[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for fuse_file_info[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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