pub struct OutcomeRecord {
pub asset_id: String,
pub success: bool,
pub recorded_at_ms: i64,
}Expand description
A single outcome record associated with an asset.
Fields§
§asset_id: String§success: bool§recorded_at_ms: i64Trait Implementations§
Source§impl Clone for OutcomeRecord
impl Clone for OutcomeRecord
Source§fn clone(&self) -> OutcomeRecord
fn clone(&self) -> OutcomeRecord
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 OutcomeRecord
impl Debug for OutcomeRecord
Source§impl<'de> Deserialize<'de> for OutcomeRecord
impl<'de> Deserialize<'de> for OutcomeRecord
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 OutcomeRecord
impl RefUnwindSafe for OutcomeRecord
impl Send for OutcomeRecord
impl Sync for OutcomeRecord
impl Unpin for OutcomeRecord
impl UnsafeUnpin for OutcomeRecord
impl UnwindSafe for OutcomeRecord
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