pub struct CommandRunOptions {
pub cwd: Option<String>,
pub env: Option<HashMap<String, String>>,
pub timeout: Option<Duration>,
}Fields§
§cwd: Option<String>§env: Option<HashMap<String, String>>§timeout: Option<Duration>Trait Implementations§
Source§impl Clone for CommandRunOptions
impl Clone for CommandRunOptions
Source§fn clone(&self) -> CommandRunOptions
fn clone(&self) -> CommandRunOptions
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 CommandRunOptions
impl Debug for CommandRunOptions
Source§impl Default for CommandRunOptions
impl Default for CommandRunOptions
Source§fn default() -> CommandRunOptions
fn default() -> CommandRunOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CommandRunOptions
impl RefUnwindSafe for CommandRunOptions
impl Send for CommandRunOptions
impl Sync for CommandRunOptions
impl Unpin for CommandRunOptions
impl UnsafeUnpin for CommandRunOptions
impl UnwindSafe for CommandRunOptions
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