pub struct WorkflowExecution {
pub run_id: String,
pub workflow_id: String,
}
Expand description
Represents a workflow execution.
Fields§
§run_id: String
A system-generated unique identifier for the workflow execution.
workflow_id: String
The user defined identifier associated with the workflow execution.
Trait Implementations§
Source§impl Clone for WorkflowExecution
impl Clone for WorkflowExecution
Source§fn clone(&self) -> WorkflowExecution
fn clone(&self) -> WorkflowExecution
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 WorkflowExecution
impl Debug for WorkflowExecution
Source§impl Default for WorkflowExecution
impl Default for WorkflowExecution
Source§fn default() -> WorkflowExecution
fn default() -> WorkflowExecution
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowExecution
impl<'de> Deserialize<'de> for WorkflowExecution
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 WorkflowExecution
impl PartialEq for WorkflowExecution
Source§impl Serialize for WorkflowExecution
impl Serialize for WorkflowExecution
impl StructuralPartialEq for WorkflowExecution
Auto Trait Implementations§
impl Freeze for WorkflowExecution
impl RefUnwindSafe for WorkflowExecution
impl Send for WorkflowExecution
impl Sync for WorkflowExecution
impl Unpin for WorkflowExecution
impl UnwindSafe for WorkflowExecution
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