pub struct CustomResourceMeasuring {
pub duration_ms: u64,
pub size_bytes: u64,
pub connect_duration_ms: u64,
pub ssl_duration_ms: u64,
pub dns_duration_ms: u64,
pub redirect_duration_ms: u64,
pub first_byte_duration_ms: u64,
pub download_duration_ms: u64,
}Fields§
§duration_ms: u64§size_bytes: u64§connect_duration_ms: u64§ssl_duration_ms: u64§dns_duration_ms: u64§redirect_duration_ms: u64§first_byte_duration_ms: u64§download_duration_ms: u64Trait Implementations§
Source§impl Clone for CustomResourceMeasuring
impl Clone for CustomResourceMeasuring
Source§fn clone(&self) -> CustomResourceMeasuring
fn clone(&self) -> CustomResourceMeasuring
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 moreimpl Copy for CustomResourceMeasuring
Source§impl Debug for CustomResourceMeasuring
impl Debug for CustomResourceMeasuring
Source§impl Default for CustomResourceMeasuring
impl Default for CustomResourceMeasuring
Source§fn default() -> CustomResourceMeasuring
fn default() -> CustomResourceMeasuring
Returns the “default value” for a type. Read more
impl Eq for CustomResourceMeasuring
Source§impl PartialEq for CustomResourceMeasuring
impl PartialEq for CustomResourceMeasuring
Source§fn eq(&self, other: &CustomResourceMeasuring) -> bool
fn eq(&self, other: &CustomResourceMeasuring) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CustomResourceMeasuring
Auto Trait Implementations§
impl Freeze for CustomResourceMeasuring
impl RefUnwindSafe for CustomResourceMeasuring
impl Send for CustomResourceMeasuring
impl Sync for CustomResourceMeasuring
impl Unpin for CustomResourceMeasuring
impl UnsafeUnpin for CustomResourceMeasuring
impl UnwindSafe for CustomResourceMeasuring
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