pub struct SerializedNotImplementedData {
pub lc: i32,
pub id: Vec<String>,
pub repr: Option<String>,
pub name: Option<String>,
pub graph: Option<HashMap<String, Value>>,
}Expand description
Data for SerializedNotImplemented without the type tag.
Fields§
§lc: i32The version of the serialization format.
id: Vec<String>The unique identifier of the object (namespace path).
repr: Option<String>The representation of the object (optional).
name: Option<String>The name of the object (optional).
graph: Option<HashMap<String, Value>>The graph of the object (optional).
Trait Implementations§
Source§impl Clone for SerializedNotImplementedData
impl Clone for SerializedNotImplementedData
Source§fn clone(&self) -> SerializedNotImplementedData
fn clone(&self) -> SerializedNotImplementedData
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 SerializedNotImplementedData
impl Debug for SerializedNotImplementedData
Source§impl<'de> Deserialize<'de> for SerializedNotImplementedData
impl<'de> Deserialize<'de> for SerializedNotImplementedData
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 SerializedNotImplementedData
impl PartialEq for SerializedNotImplementedData
Source§fn eq(&self, other: &SerializedNotImplementedData) -> bool
fn eq(&self, other: &SerializedNotImplementedData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SerializedNotImplementedData
Auto Trait Implementations§
impl Freeze for SerializedNotImplementedData
impl RefUnwindSafe for SerializedNotImplementedData
impl Send for SerializedNotImplementedData
impl Sync for SerializedNotImplementedData
impl Unpin for SerializedNotImplementedData
impl UnwindSafe for SerializedNotImplementedData
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