pub struct WorkflowNotification {
pub execution_id: String,
pub workflow_id: String,
pub success: bool,
pub steps_completed: usize,
pub total_steps: usize,
pub duration_ms: u64,
pub error: Option<String>,
}Expand description
Workflow completion notification.
Fields§
§execution_id: String§workflow_id: String§success: bool§steps_completed: usize§total_steps: usize§duration_ms: u64§error: Option<String>Trait Implementations§
Source§impl Clone for WorkflowNotification
impl Clone for WorkflowNotification
Source§fn clone(&self) -> WorkflowNotification
fn clone(&self) -> WorkflowNotification
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 WorkflowNotification
impl Debug for WorkflowNotification
Auto Trait Implementations§
impl Freeze for WorkflowNotification
impl RefUnwindSafe for WorkflowNotification
impl Send for WorkflowNotification
impl Sync for WorkflowNotification
impl Unpin for WorkflowNotification
impl UnsafeUnpin for WorkflowNotification
impl UnwindSafe for WorkflowNotification
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