[][src]Struct fuse::CuseServerBuilder

pub struct CuseServerBuilder<'a, Channel, Handlers, Hooks> { /* fields omitted */ }

Implementations

impl<'a, C, Handlers, Hooks> CuseServerBuilder<'a, C, Handlers, Hooks> where
    C: CuseServerChannel,
    Handlers: CuseHandlers,
    Hooks: ServerHooks
[src]

pub fn new(
    device_name: &'a CuseDeviceName,
    channel: C,
    handlers: Handlers
) -> CuseServerBuilder<'a, C, Handlers, Hooks>
[src]

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

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

Auto Trait Implementations

impl<'a, Channel, Handlers, Hooks> RefUnwindSafe for CuseServerBuilder<'a, Channel, Handlers, Hooks> where
    Channel: RefUnwindSafe,
    Handlers: RefUnwindSafe,
    Hooks: RefUnwindSafe

impl<'a, Channel, Handlers, Hooks> Send for CuseServerBuilder<'a, Channel, Handlers, Hooks> where
    Channel: Send,
    Handlers: Send,
    Hooks: Send

impl<'a, Channel, Handlers, Hooks> Sync for CuseServerBuilder<'a, Channel, Handlers, Hooks> where
    Channel: Sync,
    Handlers: Sync,
    Hooks: Sync

impl<'a, Channel, Handlers, Hooks> Unpin for CuseServerBuilder<'a, Channel, Handlers, Hooks> where
    Channel: Unpin,
    Handlers: Unpin,
    Hooks: Unpin

impl<'a, Channel, Handlers, Hooks> UnwindSafe for CuseServerBuilder<'a, 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.