pub struct SandboxMount {
pub source: String,
pub guest_path: String,
pub access: MountAccess,
}Expand description
Opaque boot-resolved source mounted at a fixed absolute guest path.
Fields§
§source: StringOpaque boot-authorized source identity.
guest_path: StringAbsolute path inside the anonymous sandbox root.
access: MountAccessRequested access.
Trait Implementations§
Source§impl Clone for SandboxMount
impl Clone for SandboxMount
Source§fn clone(&self) -> SandboxMount
fn clone(&self) -> SandboxMount
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SandboxMount
impl Debug for SandboxMount
impl Eq for SandboxMount
Source§impl PartialEq for SandboxMount
impl PartialEq for SandboxMount
impl StructuralPartialEq for SandboxMount
Auto Trait Implementations§
impl Freeze for SandboxMount
impl RefUnwindSafe for SandboxMount
impl Send for SandboxMount
impl Sync for SandboxMount
impl Unpin for SandboxMount
impl UnsafeUnpin for SandboxMount
impl UnwindSafe for SandboxMount
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