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

pub struct LibcFuseMount(_);
This is supported on Linux and feature="libc_fuse_mount" only.

Implementations

impl LibcFuseMount[src]

pub fn new() -> LibcFuseMount[src]

This is supported on Linux only.

pub fn set_mount_source(self, mount_source: impl AsRef<OsStr>) -> Self[src]

This is supported on Linux only.

pub fn set_mount_subtype(self, mount_subtype: impl AsRef<OsStr>) -> Self[src]

This is supported on Linux only.

pub fn set_mount_flags(self, mount_flags: u32) -> Self[src]

This is supported on Linux only.

pub fn set_user_id(self, uid: u32) -> Self[src]

This is supported on Linux only.

pub fn set_group_id(self, gid: u32) -> Self[src]

This is supported on Linux only.

pub fn set_root_mode(self, mode: u32) -> Self[src]

This is supported on Linux only.

Trait Implementations

impl FuseMount for LibcFuseMount[src]

type Channel = DevFuseChannel

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

Auto Trait Implementations

impl RefUnwindSafe for LibcFuseMount

impl Send for LibcFuseMount

impl Sync for LibcFuseMount

impl Unpin for LibcFuseMount

impl UnwindSafe for LibcFuseMount

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.