[][src]Struct glean_core::Configuration

pub struct Configuration {
    pub upload_enabled: bool,
    pub data_path: String,
    pub application_id: String,
    pub max_events: Option<usize>,
    pub delay_ping_lifetime_io: bool,
}

The Glean configuration.

Optional values will be filled in with default values.

Fields

upload_enabled: bool

Whether upload should be enabled.

data_path: String

Path to a directory to store all data in.

application_id: String

The application ID (will be sanitized during initialization).

max_events: Option<usize>

The maximum number of events to store before sending a ping containing events.

delay_ping_lifetime_io: bool

Whether Glean should delay persistence of data from metrics with ping lifetime.

Trait Implementations

impl Clone for Configuration[src]

impl Debug for Configuration[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> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,