pub struct OriginInspectorEntry {
pub dimensions: Option<Box<OriginInspectorDimensions>>,
pub values: Option<Vec<OriginInspectorValues>>,
}
Fields§
§dimensions: Option<Box<OriginInspectorDimensions>>
§values: Option<Vec<OriginInspectorValues>>
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 OriginInspectorEntry
impl OriginInspectorEntry
pub fn new() -> OriginInspectorEntry
Trait Implementations§
source§impl Clone for OriginInspectorEntry
impl Clone for OriginInspectorEntry
source§fn clone(&self) -> OriginInspectorEntry
fn clone(&self) -> OriginInspectorEntry
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 OriginInspectorEntry
impl Debug for OriginInspectorEntry
source§impl Default for OriginInspectorEntry
impl Default for OriginInspectorEntry
source§fn default() -> OriginInspectorEntry
fn default() -> OriginInspectorEntry
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for OriginInspectorEntry
impl<'de> Deserialize<'de> for OriginInspectorEntry
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<OriginInspectorEntry> for OriginInspectorEntry
impl PartialEq<OriginInspectorEntry> for OriginInspectorEntry
source§fn eq(&self, other: &OriginInspectorEntry) -> bool
fn eq(&self, other: &OriginInspectorEntry) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for OriginInspectorEntry
impl Serialize for OriginInspectorEntry
impl StructuralPartialEq for OriginInspectorEntry
Auto Trait Implementations§
impl RefUnwindSafe for OriginInspectorEntry
impl Send for OriginInspectorEntry
impl Sync for OriginInspectorEntry
impl Unpin for OriginInspectorEntry
impl UnwindSafe for OriginInspectorEntry
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