pub struct Dimension {
pub id: Option<String>,
pub annotations: Option<Vec<Annotation>>,
pub links: Option<Vec<Link>>,
pub position: usize,
pub concept_identity: String,
pub concept_roles: Option<Vec<String>>,
pub local_representation: Option<LocalRepresentation>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A dimension which represents a statistical series, such as a time series.
Fields§
§id: Option<String>
§annotations: Option<Vec<Annotation>>
§links: Option<Vec<Link>>
§position: usize
§concept_identity: String
§concept_roles: Option<Vec<String>>
§local_representation: Option<LocalRepresentation>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Dimension
impl<'de> Deserialize<'de> for Dimension
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
impl Eq for Dimension
impl StructuralPartialEq for Dimension
Auto Trait Implementations§
impl Freeze for Dimension
impl RefUnwindSafe for Dimension
impl Send for Dimension
impl Sync for Dimension
impl Unpin for Dimension
impl UnwindSafe for Dimension
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