pub struct ResolvedSandbox {
pub backend: SandboxBackend,
pub inputs: SandboxInputs,
pub container: Option<ContainerSpec>,
}Expand description
A resolved, enforced sandbox for one session.
Fields§
§backend: SandboxBackend§inputs: SandboxInputs§container: Option<ContainerSpec>Container runtime + image; Some iff backend == Container.
Trait Implementations§
Source§impl Clone for ResolvedSandbox
impl Clone for ResolvedSandbox
Source§fn clone(&self) -> ResolvedSandbox
fn clone(&self) -> ResolvedSandbox
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 moreAuto Trait Implementations§
impl Freeze for ResolvedSandbox
impl RefUnwindSafe for ResolvedSandbox
impl Send for ResolvedSandbox
impl Sync for ResolvedSandbox
impl Unpin for ResolvedSandbox
impl UnsafeUnpin for ResolvedSandbox
impl UnwindSafe for ResolvedSandbox
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