pub struct ExecAdvancedOptions {
pub stdin: Option<String>,
pub stdin_base64: Option<String>,
pub workdir: Option<String>,
pub timeout_ms: Option<u64>,
pub env: HashMap<String, String>,
}Fields§
§stdin: Option<String>§stdin_base64: Option<String>§workdir: Option<String>§timeout_ms: Option<u64>§env: HashMap<String, String>Trait Implementations§
Source§impl Clone for ExecAdvancedOptions
impl Clone for ExecAdvancedOptions
Source§fn clone(&self) -> ExecAdvancedOptions
fn clone(&self) -> ExecAdvancedOptions
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 ExecAdvancedOptions
impl Debug for ExecAdvancedOptions
Source§impl Default for ExecAdvancedOptions
impl Default for ExecAdvancedOptions
Source§fn default() -> ExecAdvancedOptions
fn default() -> ExecAdvancedOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExecAdvancedOptions
impl<'de> Deserialize<'de> for ExecAdvancedOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExecAdvancedOptions
impl RefUnwindSafe for ExecAdvancedOptions
impl Send for ExecAdvancedOptions
impl Sync for ExecAdvancedOptions
impl Unpin for ExecAdvancedOptions
impl UnsafeUnpin for ExecAdvancedOptions
impl UnwindSafe for ExecAdvancedOptions
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