pub struct TemplateStep {
pub step_type: String,
pub params: HashMap<String, String>,
pub on_error: ErrorAction,
}Expand description
A single step in a workflow template.
Fields§
§step_type: StringStep type identifier (e.g. “validate”, “transcode”, “deliver”).
params: HashMap<String, String>Parameters for this step.
on_error: ErrorActionAction to take on error.
Implementations§
Source§impl TemplateStep
impl TemplateStep
Trait Implementations§
Source§impl Clone for TemplateStep
impl Clone for TemplateStep
Source§fn clone(&self) -> TemplateStep
fn clone(&self) -> TemplateStep
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 moreAuto Trait Implementations§
impl Freeze for TemplateStep
impl RefUnwindSafe for TemplateStep
impl Send for TemplateStep
impl Sync for TemplateStep
impl Unpin for TemplateStep
impl UnsafeUnpin for TemplateStep
impl UnwindSafe for TemplateStep
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