pub struct RumDataPoint {
pub path: String,
pub lcp: Option<f64>,
pub inp: Option<f64>,
pub cls: Option<f64>,
pub fcp: Option<f64>,
pub ttfb: Option<f64>,
pub page_views: u64,
pub period: String,
}Expand description
RUM (Real User Monitoring) data point.
Fields§
§path: StringURL path.
lcp: Option<f64>Largest Contentful Paint (ms).
inp: Option<f64>Interaction to Next Paint (ms).
cls: Option<f64>Cumulative Layout Shift.
fcp: Option<f64>First Contentful Paint (ms).
ttfb: Option<f64>Time to First Byte (ms).
page_views: u64Number of page views.
period: StringCollection period.
Trait Implementations§
Source§impl Clone for RumDataPoint
impl Clone for RumDataPoint
Source§fn clone(&self) -> RumDataPoint
fn clone(&self) -> RumDataPoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RumDataPoint
impl Debug for RumDataPoint
Source§impl<'de> Deserialize<'de> for RumDataPoint
impl<'de> Deserialize<'de> for RumDataPoint
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RumDataPoint
impl RefUnwindSafe for RumDataPoint
impl Send for RumDataPoint
impl Sync for RumDataPoint
impl Unpin for RumDataPoint
impl UnsafeUnpin for RumDataPoint
impl UnwindSafe for RumDataPoint
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more