pub struct Structure {
pub links: Option<Vec<Link>>,
pub dimensions: Dimensions,
pub measures: Option<Measures>,
pub attributes: Attributes,
pub annotations: Option<Vec<Annotation>>,
pub dataset: Option<DataSet>,
pub other: Option<HashMap<String, Value>>,
}
Expand description
The structural metadata for interpreting the data contained in the message.
Fields§
§links: Option<Vec<Link>>
§dimensions: Dimensions
§measures: Option<Measures>
§attributes: Attributes
§annotations: Option<Vec<Annotation>>
§dataset: Option<DataSet>
§other: Option<HashMap<String, Value>>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Structure
impl<'de> Deserialize<'de> for Structure
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 StructuralPartialEq for Structure
Auto Trait Implementations§
impl Freeze for Structure
impl RefUnwindSafe for Structure
impl Send for Structure
impl Sync for Structure
impl Unpin for Structure
impl UnwindSafe for Structure
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