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

pub struct FuseInitResponse { /* fields omitted */ }

Response type for FuseHandlers::fuse_init.

Implementations

impl FuseInitResponse[src]

pub fn new(version: ProtocolVersion) -> Self[src]

pub fn for_request(request: &FuseInitRequest) -> Self[src]

pub fn protocol_version(&self) -> ProtocolVersion[src]

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

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

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

pub fn set_flags(&mut self, flags: FuseInitFlags)[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_gran(&self) -> u32[src]

pub fn set_time_gran(&mut self, time_gran: 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.