Struct glean::Configuration

source ·
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 server_endpoint: Option<String>,
    pub uploader: Option<Box<dyn PingUploader + 'static>>,
    pub use_core_mps: bool,
    pub trim_data_to_registered_pings: bool,
    pub log_level: Option<LevelFilter>,
    pub rate_limit: Option<PingRateLimit>,
}
Expand description

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.

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

§use_core_mps: bool

Whether Glean should schedule “metrics” pings for you.

§trim_data_to_registered_pings: bool

Whether Glean should limit its storage to only that of registered pings. Unless you know that all your and your libraries’ pings are appropriately registered before init, you shouldn’t use this.

§log_level: Option<LevelFilter>

The internal logging level.

§rate_limit: Option<PingRateLimit>

The rate pings may be uploaded before they are throttled.

Trait Implementations§

source§

impl Debug for Configuration

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.