pub struct MetricRow {
pub account_id: String,
pub region: String,
pub namespace: String,
pub metric_name: String,
pub dimensions: Vec<DimensionRow>,
pub datapoint_count: usize,
pub latest: Option<LatestDatapoint>,
}Expand description
One unique metric series (account, region, namespace, metric, dims).
Fields§
§account_id: String§region: String§namespace: String§metric_name: String§dimensions: Vec<DimensionRow>§datapoint_count: usize§latest: Option<LatestDatapoint>Trait Implementations§
Auto Trait Implementations§
impl Freeze for MetricRow
impl RefUnwindSafe for MetricRow
impl Send for MetricRow
impl Sync for MetricRow
impl Unpin for MetricRow
impl UnsafeUnpin for MetricRow
impl UnwindSafe for MetricRow
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