pub struct StepYaml {
pub name: String,
pub step_type: String,
pub action: String,
pub on_failure: String,
pub on_failure_max: Option<u32>,
pub breakpoint: bool,
pub breakpoint_message: Option<String>,
}Expand description
Raw YAML representation of a step.
Fields§
§name: String§step_type: String§action: String§on_failure: String§on_failure_max: Option<u32>§breakpoint: bool§breakpoint_message: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for StepYaml
impl<'de> Deserialize<'de> for StepYaml
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 StepYaml
impl RefUnwindSafe for StepYaml
impl Send for StepYaml
impl Sync for StepYaml
impl Unpin for StepYaml
impl UnsafeUnpin for StepYaml
impl UnwindSafe for StepYaml
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