Struct glean::ClientInfoMetrics
source · [−]pub struct ClientInfoMetrics {
pub app_build: String,
pub app_display_version: String,
pub channel: Option<String>,
}Expand description
Metrics included in every ping as client_info.
Fields
app_build: StringThe build identifier generated by the CI system (e.g. “1234/A”).
app_display_version: StringThe user visible version string (e.g. “1.0.3”).
channel: Option<String>The product-provided release channel (e.g. “beta”).
Implementations
Trait Implementations
sourceimpl Debug for ClientInfoMetrics
impl Debug for ClientInfoMetrics
sourceimpl From<ClientInfoMetrics> for ClientInfoMetrics
impl From<ClientInfoMetrics> for ClientInfoMetrics
sourcefn from(metrics: ClientInfoMetrics) -> Self
fn from(metrics: ClientInfoMetrics) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for ClientInfoMetrics
impl Send for ClientInfoMetrics
impl Sync for ClientInfoMetrics
impl Unpin for ClientInfoMetrics
impl UnwindSafe for ClientInfoMetrics
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