[][src]Struct libfuse_sys::fuse_file_info_compat

#[repr(C)]
pub struct fuse_file_info_compat {
    pub flags: c_int,
    pub fh: c_ulong,
    pub writepage: c_int,
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>,
    pub __bindgen_padding_0: [u8; 3],
}

Fields

flags: c_intfh: c_ulongwritepage: c_int_bitfield_1: __BindgenBitfieldUnit<[u8; 1], u8>__bindgen_padding_0: [u8; 3]

Methods

impl fuse_file_info_compat[src]

pub fn direct_io(&self) -> c_uint[src]

pub fn set_direct_io(&mut self, val: c_uint)[src]

pub fn keep_cache(&self) -> c_uint[src]

pub fn set_keep_cache(&mut self, val: c_uint)[src]

pub fn new_bitfield_1(
    direct_io: c_uint,
    keep_cache: c_uint
) -> __BindgenBitfieldUnit<[u8; 1], u8>
[src]

Trait Implementations

impl Clone for fuse_file_info_compat[src]

impl Copy for fuse_file_info_compat[src]

impl Debug for fuse_file_info_compat[src]

impl Default for fuse_file_info_compat[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.