pub struct FactoryRunStartedData {
pub attempt: i64,
pub factory_name: String,
pub run_id: String,
}Expand description
Session event “factory.run_started”. Ephemeral signal that a factory run attempt began executing.
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: i64Attempt number this start committed; a resumed run increments it.
factory_name: StringName of the factory this run executes. Low cardinality by construction.
run_id: StringIdentifier of the factory run that started.
Trait Implementations§
Source§impl Clone for FactoryRunStartedData
impl Clone for FactoryRunStartedData
Source§fn clone(&self) -> FactoryRunStartedData
fn clone(&self) -> FactoryRunStartedData
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 FactoryRunStartedData
impl Debug for FactoryRunStartedData
Source§impl Default for FactoryRunStartedData
impl Default for FactoryRunStartedData
Source§fn default() -> FactoryRunStartedData
fn default() -> FactoryRunStartedData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FactoryRunStartedData
impl<'de> Deserialize<'de> for FactoryRunStartedData
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 FactoryRunStartedData
impl RefUnwindSafe for FactoryRunStartedData
impl Send for FactoryRunStartedData
impl Sync for FactoryRunStartedData
impl Unpin for FactoryRunStartedData
impl UnsafeUnpin for FactoryRunStartedData
impl UnwindSafe for FactoryRunStartedData
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