pub struct CountryResourceStatsResponse {
pub query_starttime: String,
pub query_endtime: String,
pub stats: Vec<Stat>,
pub resource: String,
pub resolution: String,
pub latest_time: String,
pub earliest_time: String,
pub hd_latest_time: String,
}Fields§
§query_starttime: String§query_endtime: String§stats: Vec<Stat>§resource: String§resolution: String§latest_time: String§earliest_time: String§hd_latest_time: StringTrait Implementations§
Source§impl Clone for CountryResourceStatsResponse
impl Clone for CountryResourceStatsResponse
Source§fn clone(&self) -> CountryResourceStatsResponse
fn clone(&self) -> CountryResourceStatsResponse
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 CountryResourceStatsResponse
impl Debug for CountryResourceStatsResponse
Source§impl Default for CountryResourceStatsResponse
impl Default for CountryResourceStatsResponse
Source§fn default() -> CountryResourceStatsResponse
fn default() -> CountryResourceStatsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CountryResourceStatsResponse
impl<'de> Deserialize<'de> for CountryResourceStatsResponse
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 CountryResourceStatsResponse
impl PartialEq for CountryResourceStatsResponse
Source§fn eq(&self, other: &CountryResourceStatsResponse) -> bool
fn eq(&self, other: &CountryResourceStatsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CountryResourceStatsResponse
Auto Trait Implementations§
impl Freeze for CountryResourceStatsResponse
impl RefUnwindSafe for CountryResourceStatsResponse
impl Send for CountryResourceStatsResponse
impl Sync for CountryResourceStatsResponse
impl Unpin for CountryResourceStatsResponse
impl UnsafeUnpin for CountryResourceStatsResponse
impl UnwindSafe for CountryResourceStatsResponse
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