pub struct DimsMeasuresAttributes {
pub data_set: Option<Vec<Component>>,
pub dimension_group: Option<Vec<Component>>,
pub series: Option<Vec<Component>>,
pub observation: Option<Vec<Component>>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
An object which either represents multiple dimensions, multiple measures, or multiple attributes.
Fields§
§data_set: Option<Vec<Component>>
§dimension_group: Option<Vec<Component>>
§series: Option<Vec<Component>>
§observation: Option<Vec<Component>>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for DimsMeasuresAttributes
impl Clone for DimsMeasuresAttributes
Source§fn clone(&self) -> DimsMeasuresAttributes
fn clone(&self) -> DimsMeasuresAttributes
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 DimsMeasuresAttributes
impl Debug for DimsMeasuresAttributes
Source§impl Default for DimsMeasuresAttributes
impl Default for DimsMeasuresAttributes
Source§fn default() -> DimsMeasuresAttributes
fn default() -> DimsMeasuresAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DimsMeasuresAttributes
impl<'de> Deserialize<'de> for DimsMeasuresAttributes
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 Extendable for DimsMeasuresAttributes
impl Extendable for DimsMeasuresAttributes
Source§impl PartialEq for DimsMeasuresAttributes
impl PartialEq for DimsMeasuresAttributes
Source§impl Serialize for DimsMeasuresAttributes
impl Serialize for DimsMeasuresAttributes
impl StructuralPartialEq for DimsMeasuresAttributes
Auto Trait Implementations§
impl Freeze for DimsMeasuresAttributes
impl RefUnwindSafe for DimsMeasuresAttributes
impl Send for DimsMeasuresAttributes
impl Sync for DimsMeasuresAttributes
impl Unpin for DimsMeasuresAttributes
impl UnwindSafe for DimsMeasuresAttributes
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