Struct glean::Configuration[][src]

pub struct Configuration {
    pub upload_enabled: bool,
    pub data_path: PathBuf,
    pub application_id: String,
    pub max_events: Option<usize>,
    pub delay_ping_lifetime_io: bool,
    pub channel: Option<String>,
    pub server_endpoint: Option<String>,
    pub uploader: Option<Box<dyn PingUploader + 'static>>,
}

The Glean configuration.

Optional values will be filled in with default values.

Fields

upload_enabled: bool

Whether upload should be enabled.

data_path: PathBuf

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.

channel: Option<String>

The release channel the application is on, if known.

server_endpoint: Option<String>

The server pings are sent to.

uploader: Option<Box<dyn PingUploader + 'static>>

The instance of the uploader used to send pings.

Trait Implementations

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, 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.