pub struct RunEventContract {
pub run_id: Uuid,
pub status: String,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub duration_ms: Option<u64>,
pub attributes: Value,
pub trust: Option<TrustMetadata>,
}Fields§
§run_id: Uuid§status: String§created_at: DateTime<Utc>§updated_at: DateTime<Utc>§duration_ms: Option<u64>§attributes: Value§trust: Option<TrustMetadata>Trait Implementations§
Source§impl Clone for RunEventContract
impl Clone for RunEventContract
Source§fn clone(&self) -> RunEventContract
fn clone(&self) -> RunEventContract
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 RunEventContract
impl Debug for RunEventContract
Source§impl<'de> Deserialize<'de> for RunEventContract
impl<'de> Deserialize<'de> for RunEventContract
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 RunEventContract
impl PartialEq for RunEventContract
Source§impl Serialize for RunEventContract
impl Serialize for RunEventContract
impl StructuralPartialEq for RunEventContract
Auto Trait Implementations§
impl Freeze for RunEventContract
impl RefUnwindSafe for RunEventContract
impl Send for RunEventContract
impl Sync for RunEventContract
impl Unpin for RunEventContract
impl UnwindSafe for RunEventContract
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