pub struct StatisticSet {
pub maximum: f64,
pub minimum: f64,
pub sample_count: f64,
pub sum: f64,
}Expand description
CloudWatch StatisticSet.
Fields§
§maximum: f64§minimum: f64§sample_count: f64§sum: f64Trait Implementations§
Source§impl Clone for StatisticSet
impl Clone for StatisticSet
Source§fn clone(&self) -> StatisticSet
fn clone(&self) -> StatisticSet
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 StatisticSet
impl Debug for StatisticSet
Source§impl Default for StatisticSet
impl Default for StatisticSet
Source§fn default() -> StatisticSet
fn default() -> StatisticSet
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StatisticSet
impl<'de> Deserialize<'de> for StatisticSet
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
Auto Trait Implementations§
impl Freeze for StatisticSet
impl RefUnwindSafe for StatisticSet
impl Send for StatisticSet
impl Sync for StatisticSet
impl Unpin for StatisticSet
impl UnsafeUnpin for StatisticSet
impl UnwindSafe for StatisticSet
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