pub struct Datapoint {
pub average: Option<f64>,
pub extended_statistics: HashMap<String, f64>,
pub maximum: Option<f64>,
pub minimum: Option<f64>,
pub sample_count: Option<f64>,
pub sum: Option<f64>,
pub timestamp: Option<DateTime<Utc>>,
pub unit: Option<StandardUnit>,
}Expand description
CloudWatch Datapoint.
Fields§
§average: Option<f64>§extended_statistics: HashMap<String, f64>§maximum: Option<f64>§minimum: Option<f64>§sample_count: Option<f64>§sum: Option<f64>§timestamp: Option<DateTime<Utc>>§unit: Option<StandardUnit>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Datapoint
impl<'de> Deserialize<'de> for Datapoint
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 Datapoint
impl RefUnwindSafe for Datapoint
impl Send for Datapoint
impl Sync for Datapoint
impl Unpin for Datapoint
impl UnsafeUnpin for Datapoint
impl UnwindSafe for Datapoint
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