pub struct LinuxSandboxCommand {
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 LinuxSandboxCommand
impl Clone for LinuxSandboxCommand
Source§fn clone(&self) -> LinuxSandboxCommand
fn clone(&self) -> LinuxSandboxCommand
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 LinuxSandboxCommand
impl Debug for LinuxSandboxCommand
Source§impl PartialEq for LinuxSandboxCommand
impl PartialEq for LinuxSandboxCommand
impl Eq for LinuxSandboxCommand
impl StructuralPartialEq for LinuxSandboxCommand
Auto Trait Implementations§
impl Freeze for LinuxSandboxCommand
impl RefUnwindSafe for LinuxSandboxCommand
impl Send for LinuxSandboxCommand
impl Sync for LinuxSandboxCommand
impl Unpin for LinuxSandboxCommand
impl UnsafeUnpin for LinuxSandboxCommand
impl UnwindSafe for LinuxSandboxCommand
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