pub struct BuiltInCommand {
pub command: EvgCommandSpec,
pub command_type: Option<EvgCommandType>,
pub params_yaml: Option<String>,
}Fields§
§command: EvgCommandSpecDescription the built-in command to run.
command_type: Option<EvgCommandType>How command status should be indicated.
params_yaml: Option<String>Trait Implementations§
Source§impl Clone for BuiltInCommand
impl Clone for BuiltInCommand
Source§fn clone(&self) -> BuiltInCommand
fn clone(&self) -> BuiltInCommand
Returns a duplicate of the value. Read more
1.0.0 · 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 BuiltInCommand
impl Debug for BuiltInCommand
Source§impl<'de> Deserialize<'de> for BuiltInCommand
impl<'de> Deserialize<'de> for BuiltInCommand
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 BuiltInCommand
impl RefUnwindSafe for BuiltInCommand
impl Send for BuiltInCommand
impl Sync for BuiltInCommand
impl Unpin for BuiltInCommand
impl UnwindSafe for BuiltInCommand
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