pub struct Session { /* private fields */ }
Expand description
A FUSE session for a file system.
Handles negotiation and dispatching requests to the file system.
Implementations§
Source§impl Session
impl Session
Sourcepub fn is_initialized(&self) -> bool
pub fn is_initialized(&self) -> bool
Indicates whether the session has received an init request.
Also returns false
after the session received a destroy request.
Auto Trait Implementations§
impl !Freeze for Session
impl !RefUnwindSafe for Session
impl Send for Session
impl Sync for Session
impl Unpin for Session
impl !UnwindSafe for Session
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more