[][src]Struct fuse::os::linux::CuseServerBuilder

pub struct CuseServerBuilder<Handlers, Hooks> { /* fields omitted */ }
This is supported on Linux and feature="std" only.

Implementations

impl<Handlers> CuseServerBuilder<Handlers, NoopServerHooks>[src]

pub fn new(
    device_name: impl AsRef<OsStr>,
    handlers: Handlers
) -> CuseServerBuilder<Handlers, NoopServerHooks>
[src]

This is supported on Linux only.

impl<Handlers, Hooks> CuseServerBuilder<Handlers, Hooks>[src]

pub fn set_hooks<H>(self, hooks: H) -> CuseServerBuilder<Handlers, H>[src]

This is supported on Linux only.

impl<Handlers, Hooks> CuseServerBuilder<Handlers, Hooks> where
    Handlers: CuseHandlers,
    Hooks: ServerHooks
[src]

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

This is supported on Linux only.

Auto Trait Implementations

impl<Handlers, Hooks> RefUnwindSafe for CuseServerBuilder<Handlers, Hooks> where
    Handlers: RefUnwindSafe,
    Hooks: RefUnwindSafe

impl<Handlers, Hooks> Send for CuseServerBuilder<Handlers, Hooks> where
    Handlers: Send,
    Hooks: Send

impl<Handlers, Hooks> Sync for CuseServerBuilder<Handlers, Hooks> where
    Handlers: Sync,
    Hooks: Sync

impl<Handlers, Hooks> Unpin for CuseServerBuilder<Handlers, Hooks> where
    Handlers: Unpin,
    Hooks: Unpin

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