pub struct WorkflowInfo {
pub description: String,
pub source_code: Option<String>,
pub sub_workflows: Vec<String>,
}Expand description
Metadata about a workflow, returned by WorkflowHandler::describe.
Contains a human-readable description and optional Rust source code for display in the dashboard.
Fields§
§description: StringHuman-readable description of what the workflow does.
source_code: Option<String>Optional Rust source code of the handler (for UI display).
sub_workflows: Vec<String>Names of sub-workflows invoked by this handler.
Trait Implementations§
Source§impl Clone for WorkflowInfo
impl Clone for WorkflowInfo
Source§fn clone(&self) -> WorkflowInfo
fn clone(&self) -> WorkflowInfo
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 WorkflowInfo
impl Debug for WorkflowInfo
Auto Trait Implementations§
impl Freeze for WorkflowInfo
impl RefUnwindSafe for WorkflowInfo
impl Send for WorkflowInfo
impl Sync for WorkflowInfo
impl Unpin for WorkflowInfo
impl UnsafeUnpin for WorkflowInfo
impl UnwindSafe for WorkflowInfo
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