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,
}Expand description
The Glean configuration.
Optional values will be filled in with default values.
Fields
upload_enabled: boolWhether upload should be enabled.
data_path: PathBufPath to a directory to store all data in.
application_id: StringThe 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: boolWhether 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: boolWhether Glean should schedule “metrics” pings for you.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for Configuration
impl Send for Configuration
impl Sync for Configuration
impl Unpin for Configuration
impl !UnwindSafe for Configuration
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more