[][src]Trait fuse::os::linux::FuseMount

pub trait FuseMount {
    type Channel: FuseServerChannel;
    fn fuse_mount(
        self,
        mount_target: &Path
    ) -> Result<Self::Channel, <Self::Channel as Channel>::Error>; }
This is supported on Linux and feature="std" only.

Associated Types

type Channel: FuseServerChannel

This is supported on Linux and feature="std" only.
Loading content...

Required methods

fn fuse_mount(
    self,
    mount_target: &Path
) -> Result<Self::Channel, <Self::Channel as Channel>::Error>

This is supported on Linux and feature="std" only.
Loading content...

Implementors

impl FuseMount for LibcFuseMount[src]

type Channel = DevFuseChannel

This is supported on Linux and feature="std" only.

impl FuseMount for SyscallFuseMount[src]

type Channel = DevFuseChannel

This is supported on Linux and feature="std" only.
Loading content...