Struct virtual_fs::union_fs::StrongMountPoint
source · pub struct StrongMountPoint {
pub path: String,
pub name: String,
pub fs: Arc<Box<dyn FileSystem>>,
pub should_sanitize: bool,
pub new_path: Option<String>,
}
Expand description
A strong
mount point holds a strong Arc
reference to the filesystem
mounted at path path
.
Fields§
§path: String
§name: String
§fs: Arc<Box<dyn FileSystem>>
§should_sanitize: bool
§new_path: Option<String>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StrongMountPoint
impl !RefUnwindSafe for StrongMountPoint
impl Send for StrongMountPoint
impl Sync for StrongMountPoint
impl Unpin for StrongMountPoint
impl !UnwindSafe for StrongMountPoint
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