pub struct SandboxPlan {
pub command: String,
pub args: Vec<String>,
pub cwd: PathBuf,
pub env: BTreeMap<String, String>,
pub metadata: JsonObject,
pub cleanup_paths: Vec<PathBuf>,
}Fields§
§command: String§args: Vec<String>§cwd: PathBuf§env: BTreeMap<String, String>§metadata: JsonObject§cleanup_paths: Vec<PathBuf>Trait Implementations§
Source§impl Clone for SandboxPlan
impl Clone for SandboxPlan
Source§fn clone(&self) -> SandboxPlan
fn clone(&self) -> SandboxPlan
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 SandboxPlan
impl Debug for SandboxPlan
Source§impl Drop for SandboxPlan
impl Drop for SandboxPlan
Source§impl PartialEq for SandboxPlan
impl PartialEq for SandboxPlan
Source§fn eq(&self, other: &SandboxPlan) -> bool
fn eq(&self, other: &SandboxPlan) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SandboxPlan
Auto Trait Implementations§
impl Freeze for SandboxPlan
impl RefUnwindSafe for SandboxPlan
impl Send for SandboxPlan
impl Sync for SandboxPlan
impl Unpin for SandboxPlan
impl UnsafeUnpin for SandboxPlan
impl UnwindSafe for SandboxPlan
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