pub struct DecodedTableData {
pub key: Option<Value>,
pub key_type: String,
pub value: Option<Value>,
pub value_type: String,
}Expand description
DecodedTableData : Decoded table data
Fields§
§key: Option<Value>Key of table in JSON
key_type: StringType of key
value: Option<Value>Value of table in JSON
value_type: StringType of value
Implementations§
Trait Implementations§
Source§impl Clone for DecodedTableData
impl Clone for DecodedTableData
Source§fn clone(&self) -> DecodedTableData
fn clone(&self) -> DecodedTableData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DecodedTableData
impl Debug for DecodedTableData
Source§impl Default for DecodedTableData
impl Default for DecodedTableData
Source§fn default() -> DecodedTableData
fn default() -> DecodedTableData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DecodedTableData
impl<'de> Deserialize<'de> for DecodedTableData
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 DecodedTableData
impl PartialEq for DecodedTableData
Source§fn eq(&self, other: &DecodedTableData) -> bool
fn eq(&self, other: &DecodedTableData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DecodedTableData
impl Serialize for DecodedTableData
impl StructuralPartialEq for DecodedTableData
Auto Trait Implementations§
impl Freeze for DecodedTableData
impl RefUnwindSafe for DecodedTableData
impl Send for DecodedTableData
impl Sync for DecodedTableData
impl Unpin for DecodedTableData
impl UnsafeUnpin for DecodedTableData
impl UnwindSafe for DecodedTableData
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