pub struct RuntimeProcessSpec {
pub command: Vec<String>,
pub args: Vec<String>,
pub working_directory: Option<String>,
pub environment: BTreeMap<String, String>,
}Fields§
§command: Vec<String>An empty command uses the runnable artifact’s declared entrypoint.
args: Vec<String>§working_directory: Option<String>§environment: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for RuntimeProcessSpec
impl Clone for RuntimeProcessSpec
Source§fn clone(&self) -> RuntimeProcessSpec
fn clone(&self) -> RuntimeProcessSpec
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 RuntimeProcessSpec
impl Debug for RuntimeProcessSpec
Source§impl<'de> Deserialize<'de> for RuntimeProcessSpec
impl<'de> Deserialize<'de> for RuntimeProcessSpec
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
impl Eq for RuntimeProcessSpec
Source§impl PartialEq for RuntimeProcessSpec
impl PartialEq for RuntimeProcessSpec
Source§impl Serialize for RuntimeProcessSpec
impl Serialize for RuntimeProcessSpec
impl StructuralPartialEq for RuntimeProcessSpec
Auto Trait Implementations§
impl Freeze for RuntimeProcessSpec
impl RefUnwindSafe for RuntimeProcessSpec
impl Send for RuntimeProcessSpec
impl Sync for RuntimeProcessSpec
impl Unpin for RuntimeProcessSpec
impl UnsafeUnpin for RuntimeProcessSpec
impl UnwindSafe for RuntimeProcessSpec
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