pub struct HarPageTimings {
pub on_content_load: Option<f64>,
pub on_load: Option<f64>,
pub comment: Option<String>,
}Expand description
HAR page timing information.
Fields§
§on_content_load: Option<f64>Time until content is loaded (ms, -1 if unknown).
on_load: Option<f64>Time until page is loaded (ms, -1 if unknown).
comment: Option<String>Optional comment.
Trait Implementations§
Source§impl Clone for HarPageTimings
impl Clone for HarPageTimings
Source§fn clone(&self) -> HarPageTimings
fn clone(&self) -> HarPageTimings
Returns a duplicate of the value. Read more
1.0.0 · 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 HarPageTimings
impl Debug for HarPageTimings
Source§impl Default for HarPageTimings
impl Default for HarPageTimings
Source§fn default() -> HarPageTimings
fn default() -> HarPageTimings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HarPageTimings
impl<'de> Deserialize<'de> for HarPageTimings
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 HarPageTimings
impl RefUnwindSafe for HarPageTimings
impl Send for HarPageTimings
impl Sync for HarPageTimings
impl Unpin for HarPageTimings
impl UnwindSafe for HarPageTimings
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