pub struct StepDef {
pub id: Option<String>,
pub name: Option<String>,
pub run: Option<String>,
pub condition: Option<String>,
pub env: IndexMap<String, String>,
}Expand description
A single step within a job.
Fields§
§id: Option<String>§name: Option<String>§run: Option<String>§condition: Option<String>§env: IndexMap<String, String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for StepDef
impl<'de> Deserialize<'de> for StepDef
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 StepDef
impl RefUnwindSafe for StepDef
impl Send for StepDef
impl Sync for StepDef
impl Unpin for StepDef
impl UnsafeUnpin for StepDef
impl UnwindSafe for StepDef
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