pub struct RunState {Show 31 fields
pub schema: String,
pub trace_seq: u64,
pub run_id: String,
pub workflow_name: String,
pub run_title: Option<String>,
pub workflow_source: Option<WorkflowSource>,
pub parent_run_id: Option<String>,
pub carried_step_count: Option<u64>,
pub workflow_sources: Option<Vec<Value>>,
pub definition_digest: Option<String>,
pub started_at: String,
pub finished_at: Option<String>,
pub updated_at: String,
pub status: RunStatus,
pub input: Value,
pub outputs: BTreeMap<String, Value>,
pub results: BTreeMap<String, NodeResult>,
pub steps: Vec<StepRecord>,
pub updates: Option<Vec<Value>>,
pub current_node: Option<String>,
pub current_attempt_id: Option<String>,
pub current_node_started_at: Option<String>,
pub current_settings_scope_id: Option<String>,
pub current_settings_change_number: Option<u64>,
pub current_settings_hash: Option<String>,
pub status_detail: Option<String>,
pub human_decision: Option<Value>,
pub paused: Option<bool>,
pub waiting_on: Option<String>,
pub final_output: Option<Value>,
pub error: Option<String>,
}Fields§
§schema: String§trace_seq: u64§run_id: String§workflow_name: String§run_title: Option<String>§workflow_source: Option<WorkflowSource>§parent_run_id: Option<String>§carried_step_count: Option<u64>§workflow_sources: Option<Vec<Value>>§definition_digest: Option<String>§started_at: String§finished_at: Option<String>§updated_at: String§status: RunStatus§input: Value§outputs: BTreeMap<String, Value>§results: BTreeMap<String, NodeResult>§steps: Vec<StepRecord>§updates: Option<Vec<Value>>§current_node: Option<String>§current_attempt_id: Option<String>§current_node_started_at: Option<String>§current_settings_scope_id: Option<String>§current_settings_change_number: Option<u64>§current_settings_hash: Option<String>§status_detail: Option<String>§human_decision: Option<Value>§paused: Option<bool>§waiting_on: Option<String>§final_output: Option<Value>§error: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for RunState
impl<'de> Deserialize<'de> for RunState
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
impl StructuralPartialEq for RunState
Auto Trait Implementations§
impl Freeze for RunState
impl RefUnwindSafe for RunState
impl Send for RunState
impl Sync for RunState
impl Unpin for RunState
impl UnsafeUnpin for RunState
impl UnwindSafe for RunState
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> 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> ⓘ
Converts
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> ⓘ
Converts
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