[][src]Struct fuse::FuseServerBuilder

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

Implementations

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

pub fn new(
    channel: C,
    handlers: Handlers
) -> FuseServerBuilder<C, Handlers, Hooks>
[src]

pub fn set_hooks(self, hooks: Hooks) -> Self[src]

pub fn build(self) -> Result<FuseServer<C, Handlers, Hooks>, C::Error>[src]

Auto Trait Implementations

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

impl<Channel, Handlers, Hooks> Send for FuseServerBuilder<Channel, Handlers, Hooks> where
    Channel: Send,
    Handlers: Send,
    Hooks: Send

impl<Channel, Handlers, Hooks> Sync for FuseServerBuilder<Channel, Handlers, Hooks> where
    Channel: Sync,
    Handlers: Sync,
    Hooks: Sync

impl<Channel, Handlers, Hooks> Unpin for FuseServerBuilder<Channel, Handlers, Hooks> where
    Channel: Unpin,
    Handlers: Unpin,
    Hooks: Unpin

impl<Channel, Handlers, Hooks> UnwindSafe for FuseServerBuilder<Channel, Handlers, Hooks> where
    Channel: UnwindSafe,
    Handlers: UnwindSafe,
    Hooks: UnwindSafe

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.