pub struct StepEventContract {
pub run_id: Uuid,
pub step_id: Uuid,
pub status: String,
pub attempt: i32,
pub started_at: DateTime<Utc>,
pub finished_at: Option<DateTime<Utc>>,
pub latency_ms: Option<u64>,
pub attributes: Value,
pub trust: Option<TrustMetadata>,
}Fields§
§run_id: Uuid§step_id: Uuid§status: String§attempt: i32§started_at: DateTime<Utc>§finished_at: Option<DateTime<Utc>>§latency_ms: Option<u64>§attributes: Value§trust: Option<TrustMetadata>Trait Implementations§
Source§impl Clone for StepEventContract
impl Clone for StepEventContract
Source§fn clone(&self) -> StepEventContract
fn clone(&self) -> StepEventContract
Returns a duplicate of the value. Read more
1.0.0 · 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 StepEventContract
impl Debug for StepEventContract
Source§impl<'de> Deserialize<'de> for StepEventContract
impl<'de> Deserialize<'de> for StepEventContract
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
Source§impl PartialEq for StepEventContract
impl PartialEq for StepEventContract
Source§impl Serialize for StepEventContract
impl Serialize for StepEventContract
impl StructuralPartialEq for StepEventContract
Auto Trait Implementations§
impl Freeze for StepEventContract
impl RefUnwindSafe for StepEventContract
impl Send for StepEventContract
impl Sync for StepEventContract
impl Unpin for StepEventContract
impl UnwindSafe for StepEventContract
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