[][src]Struct fuse::protocol::fuse_init::FuseInitResponse

pub struct FuseInitResponse { /* fields omitted */ }

Response type for FuseHandlers::fuse_init.

Implementations

impl FuseInitResponse[src]

pub fn new() -> FuseInitResponse[src]

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

pub fn flags_mut(&mut self) -> &mut FuseInitFlags[src]

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

pub fn set_max_readahead(&mut self, max_readahead: u32)[src]

pub fn max_background(&self) -> u16[src]

pub fn set_max_background(&mut self, max_background: u16)[src]

pub fn congestion_threshold(&self) -> u16[src]

pub fn set_congestion_threshold(&mut self, congestion_threshold: u16)[src]

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

pub fn set_max_write(&mut self, max_write: u32)[src]

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

pub fn set_time_granularity(&mut self, granularity: u32)[src]

Trait Implementations

impl Debug for FuseInitResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for FuseInitResponse

impl Send for FuseInitResponse

impl Sync for FuseInitResponse

impl Unpin for FuseInitResponse

impl UnwindSafe for FuseInitResponse

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.