pub trait SdmxMessage {
type Data;
// Required methods
fn meta(&self) -> Option<&Meta>;
fn data(&self) -> Option<&Self::Data>;
fn errors(&self) -> Option<&Vec<StatusMessage>>;
}
Expand description
A marker trait for all top-level message types in the SDMX-JSON standard.