pub struct WorkflowRun {Show 17 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 workflow_key: String,
pub provider: String,
pub definition_id: String,
pub run_as: String,
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.
workflow_key: StringThe workflow_key field.
provider: StringThe provider field.
definition_id: StringThe definition_id field.
run_as: StringThe run_as field.
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<'de> Deserialize<'de> for WorkflowRun
impl<'de> Deserialize<'de> for WorkflowRun
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 WorkflowRun
impl PartialEq for WorkflowRun
Source§impl Serialize for WorkflowRun
impl Serialize for WorkflowRun
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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