[][src]Struct fuse::FuseServerBuilder

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

Implementations

impl<Handlers, MountOptions> FuseServerBuilder<Handlers, MountOptions> where
    Handlers: FuseHandlers,
    MountOptions: FuseMountOptions
[src]

pub fn new(handlers: Handlers) -> Self[src]

pub fn set_mount_options(self, mount_options: MountOptions) -> Self[src]

pub fn mount<Mount, Path>(
    self,
    mount_target: Path
) -> Result<FuseServer<Handlers, Mount>> where
    Path: AsRef<Path>,
    Mount: FuseMount<Options = MountOptions>,
    MountOptions: FuseMountOptions<Mount = Mount>, 
[src]

Auto Trait Implementations

impl<Handlers, MountOptions> RefUnwindSafe for FuseServerBuilder<Handlers, MountOptions> where
    Handlers: RefUnwindSafe,
    MountOptions: RefUnwindSafe

impl<Handlers, MountOptions> Send for FuseServerBuilder<Handlers, MountOptions> where
    Handlers: Send,
    MountOptions: Send

impl<Handlers, MountOptions> Sync for FuseServerBuilder<Handlers, MountOptions> where
    Handlers: Sync,
    MountOptions: Sync

impl<Handlers, MountOptions> Unpin for FuseServerBuilder<Handlers, MountOptions> where
    Handlers: Unpin,
    MountOptions: Unpin

impl<Handlers, MountOptions> UnwindSafe for FuseServerBuilder<Handlers, MountOptions> where
    Handlers: UnwindSafe,
    MountOptions: 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.