[][src]Struct fuse::FuseServer

pub struct FuseServer<Channel, Handlers, Hooks> { /* fields omitted */ }

Implementations

impl<C, Handlers, Hooks> FuseServer<C, Handlers, Hooks> where
    C: FuseServerChannel,
    Handlers: FuseHandlers,
    Hooks: ServerHooks
[src]

pub fn executor_mut(&mut self) -> &mut FuseServerExecutor<C, Handlers, Hooks>[src]

pub fn new_executor(
    &self
) -> Result<FuseServerExecutor<C, Handlers, Hooks>, C::Error>
[src]

This is supported on feature="std" only.

Auto Trait Implementations

impl<Channel, Handlers, Hooks> RefUnwindSafe for FuseServer<Channel, Handlers, Hooks> where
    Channel: RefUnwindSafe,
    Handlers: RefUnwindSafe,
    Hooks: RefUnwindSafe

impl<Channel, Handlers, Hooks> Send for FuseServer<Channel, Handlers, Hooks> where
    Channel: Send + Sync,
    Handlers: Send + Sync,
    Hooks: Send + Sync

impl<Channel, Handlers, Hooks> Sync for FuseServer<Channel, Handlers, Hooks> where
    Channel: Send + Sync,
    Handlers: Send + Sync,
    Hooks: Send + Sync

impl<Channel, Handlers, Hooks> Unpin for FuseServer<Channel, Handlers, Hooks>

impl<Channel, Handlers, Hooks> UnwindSafe for FuseServer<Channel, Handlers, Hooks> where
    Channel: RefUnwindSafe,
    Handlers: RefUnwindSafe,
    Hooks: RefUnwindSafe

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.