pub struct LogInsightsDimensionAttributes {
pub rate: Option<f32>,
pub country_chr: Option<f32>,
pub country_error_rate: Option<f32>,
pub country_request_rate: Option<f32>,
}Fields§
§rate: Option<f32>The rate at which the value in the current dimension occurs.
country_chr: Option<f32>The cache hit ratio for the country.
country_error_rate: Option<f32>The error rate for the country.
country_request_rate: Option<f32>This country’s percentage of the total requests.
Implementations§
Trait Implementations§
Source§impl Clone for LogInsightsDimensionAttributes
impl Clone for LogInsightsDimensionAttributes
Source§fn clone(&self) -> LogInsightsDimensionAttributes
fn clone(&self) -> LogInsightsDimensionAttributes
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 Default for LogInsightsDimensionAttributes
impl Default for LogInsightsDimensionAttributes
Source§fn default() -> LogInsightsDimensionAttributes
fn default() -> LogInsightsDimensionAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LogInsightsDimensionAttributes
impl<'de> Deserialize<'de> for LogInsightsDimensionAttributes
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 LogInsightsDimensionAttributes
impl PartialEq for LogInsightsDimensionAttributes
Source§fn eq(&self, other: &LogInsightsDimensionAttributes) -> bool
fn eq(&self, other: &LogInsightsDimensionAttributes) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LogInsightsDimensionAttributes
Auto Trait Implementations§
impl Freeze for LogInsightsDimensionAttributes
impl RefUnwindSafe for LogInsightsDimensionAttributes
impl Send for LogInsightsDimensionAttributes
impl Sync for LogInsightsDimensionAttributes
impl Unpin for LogInsightsDimensionAttributes
impl UnwindSafe for LogInsightsDimensionAttributes
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