Struct google_chromeuxreport1::api::Percentiles[][src]

pub struct Percentiles {
    pub p75: Option<String>,
}

Percentiles contains synthetic values of a metric at a given statistical percentile. These are used for estimating a metric's value as experienced by a percentage of users out of the total number of users.

This type is not used in any activity, and only used as part of another schema.

Fields

p75: Option<String>

75% of users experienced the given metric at or below this value.

Trait Implementations

impl Clone for Percentiles[src]

impl Debug for Percentiles[src]

impl Default for Percentiles[src]

impl<'de> Deserialize<'de> for Percentiles[src]

impl Part for Percentiles[src]

impl Serialize for Percentiles[src]

Auto Trait Implementations

impl RefUnwindSafe for Percentiles[src]

impl Send for Percentiles[src]

impl Sync for Percentiles[src]

impl Unpin for Percentiles[src]

impl UnwindSafe for Percentiles[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument 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.