[][src]Struct polyfuse::Session

pub struct Session { /* fields omitted */ }

The object containing the contextrual information about a FUSE session.

Implementations

impl Session[src]

pub fn mount(mountpoint: PathBuf, config: KernelConfig) -> Result<Self>[src]

Start a FUSE daemon mount on the specified path.

pub fn no_open_support(&self) -> bool[src]

Return whether the kernel supports for zero-message opens.

When the returned value is true, the kernel treat an ENOSYS error for a FUSE_OPEN request as successful and does not send subsequent open requests. Otherwise, the filesystem should implement the handler for open requests appropriately.

pub fn no_opendir_support(&self) -> bool[src]

Return whether the kernel supports for zero-message opendirs.

See the documentation of no_open_support for details.

pub fn next_request(&self) -> Result<Option<Request>>[src]

Receive an incoming FUSE request from the kernel.

pub fn notifier(&self) -> Notifier[src]

Create an instance of Notifier corresponding to this session.

Trait Implementations

impl AsRawFd for Session[src]

impl Debug for Session[src]

impl Drop for Session[src]

Auto Trait Implementations

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> Instrument 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.