pub enum SdmxValue {
Null,
String(String),
Integer(isize),
Number(f64),
Boolean(bool),
LocalizedText(LocalizedText),
Array(Box<Vec<SdmxValue>>),
}
Expand description
A primitive for describing pure SDMX-JSON values.
This type may or may not be replaced with
serde_json::Value
in the future.
Variants§
Null
String(String)
Integer(isize)
Number(f64)
Boolean(bool)
LocalizedText(LocalizedText)
Array(Box<Vec<SdmxValue>>)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SdmxValue
impl<'de> Deserialize<'de> for SdmxValue
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 SdmxValue
Auto Trait Implementations§
impl Freeze for SdmxValue
impl RefUnwindSafe for SdmxValue
impl Send for SdmxValue
impl Sync for SdmxValue
impl Unpin for SdmxValue
impl UnwindSafe for SdmxValue
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