pub struct WorkflowRun {Show 18 fields
pub id: String,
pub status: WorkflowRunStatus,
pub target: Option<BoundWorkflowTarget>,
pub trigger: Option<WorkflowRunTrigger>,
pub created_at: Option<SystemTime>,
pub started_at: Option<SystemTime>,
pub completed_at: Option<SystemTime>,
pub status_message: String,
pub output: Option<Value>,
pub created_by_subject_id: String,
pub workflow_key: String,
pub provider_name: String,
pub definition_id: String,
pub run_as: Option<SubjectContext>,
pub input: Option<Map<String, Value>>,
pub definition_generation: i64,
pub current_step_id: String,
pub steps: Vec<WorkflowStepExecution>,
}Expand description
Native message type for gestalt.provider.v1.WorkflowRun.
Fields§
§id: StringThe id field.
status: WorkflowRunStatusThe status field.
target: Option<BoundWorkflowTarget>The target field; None when unset.
trigger: Option<WorkflowRunTrigger>The trigger field; None when unset.
created_at: Option<SystemTime>The created_at field; None when unset.
started_at: Option<SystemTime>The started_at field; None when unset.
completed_at: Option<SystemTime>The completed_at field; None when unset.
status_message: StringThe status_message field.
output: Option<Value>The output field; None when unset.
created_by_subject_id: StringThe created_by_subject_id field.
workflow_key: StringThe workflow_key field.
provider_name: StringThe provider_name field.
definition_id: StringThe definition_id field.
run_as: Option<SubjectContext>The run_as field; None when unset.
input: Option<Map<String, Value>>The input field; None when unset.
definition_generation: i64The definition_generation field.
current_step_id: StringThe current_step_id field.
steps: Vec<WorkflowStepExecution>The steps field.
Trait Implementations§
Source§impl Clone for WorkflowRun
impl Clone for WorkflowRun
Source§fn clone(&self) -> WorkflowRun
fn clone(&self) -> WorkflowRun
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WorkflowRun
impl Debug for WorkflowRun
Source§impl Default for WorkflowRun
impl Default for WorkflowRun
Source§fn default() -> WorkflowRun
fn default() -> WorkflowRun
Returns the “default value” for a type. Read more
Source§impl PartialEq for WorkflowRun
impl PartialEq for WorkflowRun
Source§fn eq(&self, other: &WorkflowRun) -> bool
fn eq(&self, other: &WorkflowRun) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WorkflowRun
Auto Trait Implementations§
impl Freeze for WorkflowRun
impl RefUnwindSafe for WorkflowRun
impl Send for WorkflowRun
impl Sync for WorkflowRun
impl Unpin for WorkflowRun
impl UnsafeUnpin for WorkflowRun
impl UnwindSafe for WorkflowRun
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request