Struct aws_sdk_iot::types::Statistics
source · #[non_exhaustive]pub struct Statistics { /* private fields */ }
Expand description
A map of key-value pairs for all supported statistics. For issues with missing or unexpected values for this API, consult Fleet indexing troubleshooting guide.
Implementations§
source§impl Statistics
impl Statistics
sourcepub fn count(&self) -> i32
pub fn count(&self) -> i32
The count of things that match the query string criteria and contain a valid aggregation field value.
sourcepub fn sum_of_squares(&self) -> Option<f64>
pub fn sum_of_squares(&self) -> Option<f64>
The sum of the squares of the aggregated field values.
sourcepub fn std_deviation(&self) -> Option<f64>
pub fn std_deviation(&self) -> Option<f64>
The standard deviation of the aggregated field values.
source§impl Statistics
impl Statistics
sourcepub fn builder() -> StatisticsBuilder
pub fn builder() -> StatisticsBuilder
Creates a new builder-style object to manufacture Statistics
.
Trait Implementations§
source§impl Clone for Statistics
impl Clone for Statistics
source§fn clone(&self) -> Statistics
fn clone(&self) -> Statistics
Returns a copy 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 Statistics
impl Debug for Statistics
source§impl PartialEq<Statistics> for Statistics
impl PartialEq<Statistics> for Statistics
source§fn eq(&self, other: &Statistics) -> bool
fn eq(&self, other: &Statistics) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Statistics
Auto Trait Implementations§
impl RefUnwindSafe for Statistics
impl Send for Statistics
impl Sync for Statistics
impl Unpin for Statistics
impl UnwindSafe for Statistics
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