pub struct ProcessStartExpr {
pub process: CompactString,
pub args: Vec<(CompactString, Expr)>,
}Fields§
§process: CompactString§args: Vec<(CompactString, Expr)>Trait Implementations§
Source§impl Clone for ProcessStartExpr
impl Clone for ProcessStartExpr
Source§fn clone(&self) -> ProcessStartExpr
fn clone(&self) -> ProcessStartExpr
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 ProcessStartExpr
impl Debug for ProcessStartExpr
Source§impl<'de> Deserialize<'de> for ProcessStartExpr
impl<'de> Deserialize<'de> for ProcessStartExpr
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
Source§impl PartialEq for ProcessStartExpr
impl PartialEq for ProcessStartExpr
Source§fn eq(&self, other: &ProcessStartExpr) -> bool
fn eq(&self, other: &ProcessStartExpr) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProcessStartExpr
impl Serialize for ProcessStartExpr
impl StructuralPartialEq for ProcessStartExpr
Auto Trait Implementations§
impl Freeze for ProcessStartExpr
impl RefUnwindSafe for ProcessStartExpr
impl Send for ProcessStartExpr
impl Sync for ProcessStartExpr
impl Unpin for ProcessStartExpr
impl UnsafeUnpin for ProcessStartExpr
impl UnwindSafe for ProcessStartExpr
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