pub struct WorkflowInstance {
pub id: String,
pub workflow_definition_id: String,
pub version: u32,
pub description: Option<String>,
pub reference: Option<String>,
pub execution_pointers: Vec<ExecutionPointer>,
pub next_execution: Option<i64>,
pub status: WorkflowStatus,
pub data: Value,
pub create_time: DateTime<Utc>,
pub complete_time: Option<DateTime<Utc>>,
}Fields§
§id: String§workflow_definition_id: String§version: u32§description: Option<String>§reference: Option<String>§execution_pointers: Vec<ExecutionPointer>§next_execution: Option<i64>§status: WorkflowStatus§data: Value§create_time: DateTime<Utc>§complete_time: Option<DateTime<Utc>>Implementations§
Trait Implementations§
Source§impl Clone for WorkflowInstance
impl Clone for WorkflowInstance
Source§fn clone(&self) -> WorkflowInstance
fn clone(&self) -> WorkflowInstance
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 WorkflowInstance
impl Debug for WorkflowInstance
Source§impl<'de> Deserialize<'de> for WorkflowInstance
impl<'de> Deserialize<'de> for WorkflowInstance
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 WorkflowInstance
impl RefUnwindSafe for WorkflowInstance
impl Send for WorkflowInstance
impl Sync for WorkflowInstance
impl Unpin for WorkflowInstance
impl UnsafeUnpin for WorkflowInstance
impl UnwindSafe for WorkflowInstance
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