[][src]Struct polyfuse_tokio::Server

pub struct Server { /* fields omitted */ }

A FUSE filesystem server running on Tokio runtime.

Methods

impl Server[src]

pub async fn mount<'_, '_>(
    mountpoint: impl AsRef<Path>,
    mountopts: &'_ [&'_ OsStr]
) -> Result<Self>
[src]

Create a FUSE server mounted on the specified path.

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

Create an instance of Notifier associated with this server.

pub async fn run<F>(self, fs: F) -> Result<()> where
    F: Filesystem<Bytes> + Send + 'static, 
[src]

Run a FUSE filesystem daemon.

pub async fn run_until<F, S>(self, fs: F, sig: S) -> Result<Option<S::Output>> where
    F: Filesystem<Bytes> + Send + 'static,
    S: Future + Unpin
[src]

Run a FUSE filesystem until the specified signal is received.

Trait Implementations

impl Debug for Server[src]

Auto Trait Implementations

impl Send for Server

impl Sync for Server

impl Unpin for Server

impl !UnwindSafe for Server

impl !RefUnwindSafe for Server

Blanket Implementations

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 = !

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]