pub struct SandboxCommand {
pub program: String,
pub args: Vec<String>,
pub env: Vec<(String, String)>,
}Fields§
§program: String§args: Vec<String>§env: Vec<(String, String)>Trait Implementations§
Source§impl Clone for SandboxCommand
impl Clone for SandboxCommand
Source§fn clone(&self) -> SandboxCommand
fn clone(&self) -> SandboxCommand
Returns a duplicate of the value. Read more
1.0.0 · 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 SandboxCommand
impl Debug for SandboxCommand
Source§impl PartialEq for SandboxCommand
impl PartialEq for SandboxCommand
impl Eq for SandboxCommand
impl StructuralPartialEq for SandboxCommand
Auto Trait Implementations§
impl Freeze for SandboxCommand
impl RefUnwindSafe for SandboxCommand
impl Send for SandboxCommand
impl Sync for SandboxCommand
impl Unpin for SandboxCommand
impl UnsafeUnpin for SandboxCommand
impl UnwindSafe for SandboxCommand
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