pub struct CompiledFlow {
pub name: String,
pub flow_hash: [u8; 32],
pub steps: Vec<CompiledFlowStep>,
}Expand description
Compiled flow ready for execution
Fields§
§name: String§flow_hash: [u8; 32]§steps: Vec<CompiledFlowStep>Trait Implementations§
Source§impl Clone for CompiledFlow
impl Clone for CompiledFlow
Source§fn clone(&self) -> CompiledFlow
fn clone(&self) -> CompiledFlow
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 CompiledFlow
impl Debug for CompiledFlow
Source§impl<'de> Deserialize<'de> for CompiledFlow
impl<'de> Deserialize<'de> for CompiledFlow
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
Source§impl PartialEq for CompiledFlow
impl PartialEq for CompiledFlow
Source§impl Serialize for CompiledFlow
impl Serialize for CompiledFlow
impl StructuralPartialEq for CompiledFlow
Auto Trait Implementations§
impl Freeze for CompiledFlow
impl RefUnwindSafe for CompiledFlow
impl Send for CompiledFlow
impl Sync for CompiledFlow
impl Unpin for CompiledFlow
impl UnwindSafe for CompiledFlow
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