pub struct MetricKeyDataPoints {
pub data_points: Option<Vec<DataPoint>>,
pub key: Option<ResponseResourceMetricKey>,
}
Expand description
A time-ordered series of data points, correpsonding to a dimension of a Performance Insights metric.
Fields§
§data_points: Option<Vec<DataPoint>>
An array of timestamp-value pairs, representing measurements over a period of time.
key: Option<ResponseResourceMetricKey>
The dimension(s) to which the data points apply.
Trait Implementations§
Source§impl Clone for MetricKeyDataPoints
impl Clone for MetricKeyDataPoints
Source§fn clone(&self) -> MetricKeyDataPoints
fn clone(&self) -> MetricKeyDataPoints
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 MetricKeyDataPoints
impl Debug for MetricKeyDataPoints
Source§impl Default for MetricKeyDataPoints
impl Default for MetricKeyDataPoints
Source§fn default() -> MetricKeyDataPoints
fn default() -> MetricKeyDataPoints
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MetricKeyDataPoints
impl<'de> Deserialize<'de> for MetricKeyDataPoints
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 MetricKeyDataPoints
impl PartialEq for MetricKeyDataPoints
impl StructuralPartialEq for MetricKeyDataPoints
Auto Trait Implementations§
impl Freeze for MetricKeyDataPoints
impl RefUnwindSafe for MetricKeyDataPoints
impl Send for MetricKeyDataPoints
impl Sync for MetricKeyDataPoints
impl Unpin for MetricKeyDataPoints
impl UnwindSafe for MetricKeyDataPoints
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