pub struct WebVitalEvent {
pub event_time: i64,
pub name: String,
pub value: f64,
pub rating: String,
pub metric_id: String,
pub navigation_type: Option<String>,
pub route: String,
pub path: String,
}Fields§
§event_time: i64§name: String§value: f64§rating: String§metric_id: String§route: String§path: StringTrait Implementations§
Source§impl Clone for WebVitalEvent
impl Clone for WebVitalEvent
Source§fn clone(&self) -> WebVitalEvent
fn clone(&self) -> WebVitalEvent
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 WebVitalEvent
impl Debug for WebVitalEvent
Source§impl<'de> Deserialize<'de> for WebVitalEvent
impl<'de> Deserialize<'de> for WebVitalEvent
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 WebVitalEvent
impl RefUnwindSafe for WebVitalEvent
impl Send for WebVitalEvent
impl Sync for WebVitalEvent
impl Unpin for WebVitalEvent
impl UnsafeUnpin for WebVitalEvent
impl UnwindSafe for WebVitalEvent
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