Struct glean_core::metrics::RecordedEvent [−][src]
pub struct RecordedEvent { pub timestamp: u64, pub category: String, pub name: String, pub extra: Option<HashMap<String, String>>, }
Expand description
Represents the recorded data for a single event.
Fields
timestamp: u64
Expand description
The timestamp of when the event was recorded.
This allows to order events from a single process run.
category: String
Expand description
The event’s category.
This is defined by users in the metrics file.
name: String
Expand description
The event’s name.
This is defined by users in the metrics file.
extra: Option<HashMap<String, String>>
Expand description
A map of all extra data values.
The set of allowed extra keys is defined by users in the metrics file.
Trait Implementations
impl Clone for RecordedEvent
[src]
impl Clone for RecordedEvent
[src]fn clone(&self) -> RecordedEvent
[src]
fn clone(&self) -> RecordedEvent
[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]Performs copy-assignment from source
. Read more
impl Debug for RecordedEvent
[src]
impl Debug for RecordedEvent
[src]impl<'de> Deserialize<'de> for RecordedEvent
[src]
impl<'de> Deserialize<'de> for RecordedEvent
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]Deserialize this value from the given Serde deserializer. Read more
impl PartialEq<RecordedEvent> for RecordedEvent
[src]
impl PartialEq<RecordedEvent> for RecordedEvent
[src]fn eq(&self, other: &RecordedEvent) -> bool
[src]
fn eq(&self, other: &RecordedEvent) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &RecordedEvent) -> bool
[src]
fn ne(&self, other: &RecordedEvent) -> bool
[src]This method tests for !=
.
impl Serialize for RecordedEvent
[src]
impl Serialize for RecordedEvent
[src]impl Eq for RecordedEvent
[src]
impl StructuralEq for RecordedEvent
[src]
impl StructuralPartialEq for RecordedEvent
[src]
Auto Trait Implementations
impl RefUnwindSafe for RecordedEvent
impl Send for RecordedEvent
impl Sync for RecordedEvent
impl Unpin for RecordedEvent
impl UnwindSafe for RecordedEvent
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> EncodableKey for T where
T: Serialize,
[src]
impl<T> EncodableKey for T where
T: Serialize,
[src]impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,