pub struct StepEntry {
pub create_time: Option<DateTime<Utc>>,
pub entry_id: Option<i64>,
pub exception: Option<Exception>,
pub name: Option<String>,
pub navigation_info: Option<NavigationInfo>,
pub routine: Option<String>,
pub state: Option<String>,
pub step: Option<String>,
pub step_entry_metadata: Option<StepEntryMetadata>,
pub step_type: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}
Expand description
An StepEntry contains debugging information for a step transition in a workflow execution.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§create_time: Option<DateTime<Utc>>
Output only. The creation time of the step entry.
entry_id: Option<i64>
Output only. The numeric ID of this step entry, used for navigation.
exception: Option<Exception>
Output only. The exception thrown by the step entry.
name: Option<String>
Output only. The full resource name of the step entry. Each step entry has a unique entry ID, which is a monotonically increasing counter. Step entry names have the format: projects/{project}/locations/{location}/workflows/{workflow}/executions/{execution}/stepEntries/{step_entry}
.
Output only. The NavigationInfo associated to this step.
routine: Option<String>
Output only. The name of the routine this step entry belongs to. A routine name is the subworkflow name defined in the YAML source code. The top level routine name is main
.
state: Option<String>
Output only. The state of the step entry.
step: Option<String>
Output only. The name of the step this step entry belongs to.
step_entry_metadata: Option<StepEntryMetadata>
Output only. The StepEntryMetadata associated to this step.
step_type: Option<String>
Output only. The type of the step this step entry belongs to.
update_time: Option<DateTime<Utc>>
Output only. The most recently updated time of the step entry.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StepEntry
impl<'de> Deserialize<'de> for StepEntry
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>,
impl ResponseResult for StepEntry
Auto Trait Implementations§
impl Freeze for StepEntry
impl RefUnwindSafe for StepEntry
impl Send for StepEntry
impl Sync for StepEntry
impl Unpin for StepEntry
impl UnwindSafe for StepEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more