pub struct WorkflowRegistry {
pub workflows: HashMap<String, WorkflowSpec>,
pub hooks: Vec<WorkflowHookBinding>,
}Fields§
§workflows: HashMap<String, WorkflowSpec>§hooks: Vec<WorkflowHookBinding>Trait Implementations§
Source§impl Clone for WorkflowRegistry
impl Clone for WorkflowRegistry
Source§fn clone(&self) -> WorkflowRegistry
fn clone(&self) -> WorkflowRegistry
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 WorkflowRegistry
impl Debug for WorkflowRegistry
Source§impl Default for WorkflowRegistry
impl Default for WorkflowRegistry
Source§fn default() -> WorkflowRegistry
fn default() -> WorkflowRegistry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowRegistry
impl<'de> Deserialize<'de> for WorkflowRegistry
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 WorkflowRegistry
impl PartialEq for WorkflowRegistry
Source§impl Serialize for WorkflowRegistry
impl Serialize for WorkflowRegistry
impl StructuralPartialEq for WorkflowRegistry
Auto Trait Implementations§
impl Freeze for WorkflowRegistry
impl RefUnwindSafe for WorkflowRegistry
impl Send for WorkflowRegistry
impl Sync for WorkflowRegistry
impl Unpin for WorkflowRegistry
impl UnsafeUnpin for WorkflowRegistry
impl UnwindSafe for WorkflowRegistry
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