Struct glean::RecordedEvent[][src]

pub struct RecordedEvent {
    pub timestamp: u64,
    pub category: String,
    pub name: String,
    pub extra: Option<HashMap<String, String, RandomState>>,
}

Represents the recorded data for a single event.

Fields

timestamp: u64

The timestamp of when the event was recorded.

This allows to order events from a single process run.

category: String

The event's category.

This is defined by users in the metrics file.

name: String

The event's name.

This is defined by users in the metrics file.

extra: Option<HashMap<String, String, RandomState>>

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 Debug for RecordedEvent[src]

impl<'de> Deserialize<'de> for RecordedEvent[src]

impl Eq for RecordedEvent[src]

impl PartialEq<RecordedEvent> for RecordedEvent[src]

impl Serialize for RecordedEvent[src]

impl StructuralEq for RecordedEvent[src]

impl StructuralPartialEq for RecordedEvent[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> EncodableKey for T where
    T: Serialize

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.