pub struct SubstrateCommand {
pub program: String,
pub args: Vec<String>,
pub working_dir: Option<String>,
pub timeout_secs: u64,
pub capture_stderr: bool,
pub env: Vec<(String, String)>,
}Fields§
§program: String§args: Vec<String>§working_dir: Option<String>§timeout_secs: u64§capture_stderr: bool§env: Vec<(String, String)>Implementations§
Trait Implementations§
Source§impl Clone for SubstrateCommand
impl Clone for SubstrateCommand
Source§fn clone(&self) -> SubstrateCommand
fn clone(&self) -> SubstrateCommand
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 SubstrateCommand
impl RefUnwindSafe for SubstrateCommand
impl Send for SubstrateCommand
impl Sync for SubstrateCommand
impl Unpin for SubstrateCommand
impl UnsafeUnpin for SubstrateCommand
impl UnwindSafe for SubstrateCommand
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