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

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

Implementations

impl SyscallFuseMount[src]

pub fn new() -> SyscallFuseMount[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 SyscallFuseMount[src]

type Channel = DevFuseChannel

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

Auto Trait Implementations

impl RefUnwindSafe for SyscallFuseMount

impl Send for SyscallFuseMount

impl Sync for SyscallFuseMount

impl Unpin for SyscallFuseMount

impl UnwindSafe for SyscallFuseMount

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.