pub struct PerformanceResult {
pub load_time_secs: f64,
pub load_time_status: String,
pub content_size_kb: f64,
pub compression: String,
pub server: String,
pub cache_control: String,
pub etag: bool,
}Available on crate feature
seo-analysis only.Fields§
§load_time_secs: f64§load_time_status: String§content_size_kb: f64§compression: String§server: String§cache_control: String§etag: boolTrait Implementations§
Source§impl Clone for PerformanceResult
impl Clone for PerformanceResult
Source§fn clone(&self) -> PerformanceResult
fn clone(&self) -> PerformanceResult
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 PerformanceResult
impl Debug for PerformanceResult
Source§impl<'de> Deserialize<'de> for PerformanceResult
impl<'de> Deserialize<'de> for PerformanceResult
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 PerformanceResult
impl RefUnwindSafe for PerformanceResult
impl Send for PerformanceResult
impl Sync for PerformanceResult
impl Unpin for PerformanceResult
impl UnsafeUnpin for PerformanceResult
impl UnwindSafe for PerformanceResult
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