pub struct DomainInspectorEntry {
pub dimensions: Option<Box<DomainInspectorEntryDimensions>>,
pub values: Option<Vec<Values>>,
}
Fields§
§dimensions: Option<Box<DomainInspectorEntryDimensions>>
§values: Option<Vec<Values>>
An array of values representing the metric values at each point in time. Note that this dataset is sparse: only the keys with non-zero values will be included in the record.
Implementations§
Source§impl DomainInspectorEntry
impl DomainInspectorEntry
pub fn new() -> DomainInspectorEntry
Trait Implementations§
Source§impl Clone for DomainInspectorEntry
impl Clone for DomainInspectorEntry
Source§fn clone(&self) -> DomainInspectorEntry
fn clone(&self) -> DomainInspectorEntry
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 DomainInspectorEntry
impl Debug for DomainInspectorEntry
Source§impl Default for DomainInspectorEntry
impl Default for DomainInspectorEntry
Source§fn default() -> DomainInspectorEntry
fn default() -> DomainInspectorEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DomainInspectorEntry
impl<'de> Deserialize<'de> for DomainInspectorEntry
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 DomainInspectorEntry
impl PartialEq for DomainInspectorEntry
Source§impl Serialize for DomainInspectorEntry
impl Serialize for DomainInspectorEntry
impl StructuralPartialEq for DomainInspectorEntry
Auto Trait Implementations§
impl Freeze for DomainInspectorEntry
impl RefUnwindSafe for DomainInspectorEntry
impl Send for DomainInspectorEntry
impl Sync for DomainInspectorEntry
impl Unpin for DomainInspectorEntry
impl UnwindSafe for DomainInspectorEntry
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