pub struct FactoryProgressLine {
pub attempt: i64,
pub kind: FactoryLogLineKind,
pub phase_id: Option<String>,
pub recorded_at: i64,
pub seq: i64,
pub text: String,
}Expand description
One durable factory progress record.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§attempt: i64Resume attempt that emitted this record.
kind: FactoryLogLineKindProgress record kind.
phase_id: Option<String>Phase active when the record was emitted, or null before any phase.
recorded_at: i64Epoch milliseconds when the record was persisted.
seq: i64Global monotonic sequence number within the run.
text: StringPrompt-safe progress text.
Trait Implementations§
Source§impl Clone for FactoryProgressLine
impl Clone for FactoryProgressLine
Source§fn clone(&self) -> FactoryProgressLine
fn clone(&self) -> FactoryProgressLine
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 FactoryProgressLine
impl Debug for FactoryProgressLine
Source§impl Default for FactoryProgressLine
impl Default for FactoryProgressLine
Source§fn default() -> FactoryProgressLine
fn default() -> FactoryProgressLine
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FactoryProgressLine
impl<'de> Deserialize<'de> for FactoryProgressLine
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 FactoryProgressLine
impl RefUnwindSafe for FactoryProgressLine
impl Send for FactoryProgressLine
impl Sync for FactoryProgressLine
impl Unpin for FactoryProgressLine
impl UnsafeUnpin for FactoryProgressLine
impl UnwindSafe for FactoryProgressLine
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