pub struct StatsEvent {
pub skill_name: String,
pub skill_version: String,
pub manifest_digest: String,
pub success: bool,
pub failure: bool,
pub now: DateTime<Utc>,
}Expand description
Mirrors Event::SkillExecuted without coupling mur-common to the
runtime’s Event enum.
Fields§
§skill_name: String§skill_version: String§manifest_digest: String§success: bool§failure: bool§now: DateTime<Utc>Trait Implementations§
Source§impl Clone for StatsEvent
impl Clone for StatsEvent
Source§fn clone(&self) -> StatsEvent
fn clone(&self) -> StatsEvent
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 moreAuto Trait Implementations§
impl Freeze for StatsEvent
impl RefUnwindSafe for StatsEvent
impl Send for StatsEvent
impl Sync for StatsEvent
impl Unpin for StatsEvent
impl UnsafeUnpin for StatsEvent
impl UnwindSafe for StatsEvent
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