pub struct ValuesDuration {
pub average_response_time: Option<f32>,
pub p95_response_time: Option<f32>,
pub response_time_percentage: Option<f32>,
}
Fields§
§average_response_time: Option<f32>
The average time in seconds to respond to requests to the URL in the current dimension.
p95_response_time: Option<f32>
The P95 time in seconds to respond to requests to the URL in the current dimension.
response_time_percentage: Option<f32>
The total percentage of time to respond to all requests to the URL in the current dimension.
Implementations§
Source§impl ValuesDuration
impl ValuesDuration
pub fn new() -> ValuesDuration
Trait Implementations§
Source§impl Clone for ValuesDuration
impl Clone for ValuesDuration
Source§fn clone(&self) -> ValuesDuration
fn clone(&self) -> ValuesDuration
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 ValuesDuration
impl Debug for ValuesDuration
Source§impl Default for ValuesDuration
impl Default for ValuesDuration
Source§fn default() -> ValuesDuration
fn default() -> ValuesDuration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ValuesDuration
impl<'de> Deserialize<'de> for ValuesDuration
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
Source§impl PartialEq for ValuesDuration
impl PartialEq for ValuesDuration
Source§impl Serialize for ValuesDuration
impl Serialize for ValuesDuration
impl StructuralPartialEq for ValuesDuration
Auto Trait Implementations§
impl Freeze for ValuesDuration
impl RefUnwindSafe for ValuesDuration
impl Send for ValuesDuration
impl Sync for ValuesDuration
impl Unpin for ValuesDuration
impl UnwindSafe for ValuesDuration
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