pub struct FlowDefinition {
pub name: String,
pub description: Option<String>,
pub steps: Vec<FlowStep>,
pub on_error: FlowErrorHandler,
}Expand description
Flow definition from ```flow fence blocks
Fields§
§name: String§description: Option<String>§steps: Vec<FlowStep>§on_error: FlowErrorHandlerTrait Implementations§
Source§impl Clone for FlowDefinition
impl Clone for FlowDefinition
Source§fn clone(&self) -> FlowDefinition
fn clone(&self) -> FlowDefinition
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 FlowDefinition
impl Debug for FlowDefinition
Source§impl<'de> Deserialize<'de> for FlowDefinition
impl<'de> Deserialize<'de> for FlowDefinition
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 FlowDefinition
impl RefUnwindSafe for FlowDefinition
impl Send for FlowDefinition
impl Sync for FlowDefinition
impl Unpin for FlowDefinition
impl UnwindSafe for FlowDefinition
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