pub struct ValuesCountryStats {
pub region: Option<String>,
pub region_chr: Option<f32>,
pub region_error_rate: Option<f32>,
}Fields§
§region: Option<String>The client’s country subdivision code as defined by ISO 3166-2.
region_chr: Option<f32>The cache hit ratio for the region.
region_error_rate: Option<f32>The error rate for the region.
Implementations§
Source§impl ValuesCountryStats
impl ValuesCountryStats
pub fn new() -> ValuesCountryStats
Trait Implementations§
Source§impl Clone for ValuesCountryStats
impl Clone for ValuesCountryStats
Source§fn clone(&self) -> ValuesCountryStats
fn clone(&self) -> ValuesCountryStats
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 ValuesCountryStats
impl Debug for ValuesCountryStats
Source§impl Default for ValuesCountryStats
impl Default for ValuesCountryStats
Source§fn default() -> ValuesCountryStats
fn default() -> ValuesCountryStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ValuesCountryStats
impl<'de> Deserialize<'de> for ValuesCountryStats
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 ValuesCountryStats
impl PartialEq for ValuesCountryStats
Source§impl Serialize for ValuesCountryStats
impl Serialize for ValuesCountryStats
impl StructuralPartialEq for ValuesCountryStats
Auto Trait Implementations§
impl Freeze for ValuesCountryStats
impl RefUnwindSafe for ValuesCountryStats
impl Send for ValuesCountryStats
impl Sync for ValuesCountryStats
impl Unpin for ValuesCountryStats
impl UnwindSafe for ValuesCountryStats
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