[−][src]Struct polyfuse_tokio::Server
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]
mountpoint: impl AsRef<Path>,
mountopts: &'_ [&'_ OsStr]
) -> Result<Self>
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]
F: Filesystem<Bytes> + Send + 'static,
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]
F: Filesystem<Bytes> + Send + 'static,
S: Future + Unpin,
Run a FUSE filesystem until the specified signal is received.
Trait Implementations
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]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,