pub struct StatusReport {
pub current_step: Option<String>,
pub progress_percentage: u32,
pub estimated_completion_time: Option<DateTime<Utc>>,
pub workflow_status: WorkflowStatus,
pub completed_steps_count: usize,
pub total_steps: usize,
}Expand description
Status report for a workflow
Fields§
§current_step: Option<String>Current executing step ID
progress_percentage: u32Progress percentage (0-100)
estimated_completion_time: Option<DateTime<Utc>>Estimated completion time
workflow_status: WorkflowStatusWorkflow status
completed_steps_count: usizeNumber of completed steps
total_steps: usizeTotal steps in workflow
Trait Implementations§
Source§impl Clone for StatusReport
impl Clone for StatusReport
Source§fn clone(&self) -> StatusReport
fn clone(&self) -> StatusReport
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 StatusReport
impl Debug for StatusReport
Source§impl<'de> Deserialize<'de> for StatusReport
impl<'de> Deserialize<'de> for StatusReport
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 StatusReport
impl RefUnwindSafe for StatusReport
impl Send for StatusReport
impl Sync for StatusReport
impl Unpin for StatusReport
impl UnwindSafe for StatusReport
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