pub struct DataFormatSpec {
pub format: Option<String>,
pub schema: Option<String>,
pub value_range: Option<Vec<f64>>,
pub other: HashMap<String, Value>,
}Fields§
§format: Option<String>§schema: Option<String>§value_range: Option<Vec<f64>>§other: HashMap<String, Value>Trait Implementations§
Source§impl Clone for DataFormatSpec
impl Clone for DataFormatSpec
Source§fn clone(&self) -> DataFormatSpec
fn clone(&self) -> DataFormatSpec
Returns a duplicate 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 DataFormatSpec
impl Debug for DataFormatSpec
Source§impl<'de> Deserialize<'de> for DataFormatSpec
impl<'de> Deserialize<'de> for DataFormatSpec
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 DataFormatSpec
impl PartialEq for DataFormatSpec
Source§impl Serialize for DataFormatSpec
impl Serialize for DataFormatSpec
impl StructuralPartialEq for DataFormatSpec
Auto Trait Implementations§
impl Freeze for DataFormatSpec
impl RefUnwindSafe for DataFormatSpec
impl Send for DataFormatSpec
impl Sync for DataFormatSpec
impl Unpin for DataFormatSpec
impl UnwindSafe for DataFormatSpec
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