pub struct FactoryPhaseObservation {Show 13 fields
pub accumulated_active_ms: i64,
pub completed_at: Option<i64>,
pub current_active_ms: i64,
pub detail: Option<String>,
pub entry_count: i64,
pub id: String,
pub last_entered_run_attempt: i64,
pub live_agent_count: i64,
pub ordinal: Option<i64>,
pub started_at: Option<i64>,
pub status: FactoryPhaseStatus,
pub title: String,
pub total_agent_count: i64,
}Expand description
Durable lifecycle and timing for one factory phase.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§accumulated_active_ms: i64§completed_at: Option<i64>§current_active_ms: i64§detail: Option<String>§entry_count: i64§id: String§last_entered_run_attempt: i64§live_agent_count: i64§ordinal: Option<i64>§started_at: Option<i64>§status: FactoryPhaseStatus§title: String§total_agent_count: i64Trait Implementations§
Source§impl Clone for FactoryPhaseObservation
impl Clone for FactoryPhaseObservation
Source§fn clone(&self) -> FactoryPhaseObservation
fn clone(&self) -> FactoryPhaseObservation
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 FactoryPhaseObservation
impl Debug for FactoryPhaseObservation
Source§impl Default for FactoryPhaseObservation
impl Default for FactoryPhaseObservation
Source§fn default() -> FactoryPhaseObservation
fn default() -> FactoryPhaseObservation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FactoryPhaseObservation
impl<'de> Deserialize<'de> for FactoryPhaseObservation
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
Auto Trait Implementations§
impl Freeze for FactoryPhaseObservation
impl RefUnwindSafe for FactoryPhaseObservation
impl Send for FactoryPhaseObservation
impl Sync for FactoryPhaseObservation
impl Unpin for FactoryPhaseObservation
impl UnsafeUnpin for FactoryPhaseObservation
impl UnwindSafe for FactoryPhaseObservation
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