pub struct TimeDimension {
pub id: Option<String>,
pub annotations: Option<Vec<Annotation>>,
pub links: Option<Vec<Link>>,
pub concept_identity: String,
pub local_representation: LocalRepresentation,
pub other: Option<HashMap<String, Value>>,
}
Expand description
A statistical series representing time.
Fields§
§id: Option<String>
§annotations: Option<Vec<Annotation>>
§links: Option<Vec<Link>>
§concept_identity: String
§local_representation: LocalRepresentation
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl Clone for TimeDimension
impl Clone for TimeDimension
Source§fn clone(&self) -> TimeDimension
fn clone(&self) -> TimeDimension
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 TimeDimension
impl Debug for TimeDimension
Source§impl Default for TimeDimension
impl Default for TimeDimension
Source§fn default() -> TimeDimension
fn default() -> TimeDimension
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimeDimension
impl<'de> Deserialize<'de> for TimeDimension
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 TimeDimension
impl PartialEq for TimeDimension
Source§impl Serialize for TimeDimension
impl Serialize for TimeDimension
impl Eq for TimeDimension
impl StructuralPartialEq for TimeDimension
Auto Trait Implementations§
impl Freeze for TimeDimension
impl RefUnwindSafe for TimeDimension
impl Send for TimeDimension
impl Sync for TimeDimension
impl Unpin for TimeDimension
impl UnwindSafe for TimeDimension
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