Enum serde_intermediate::schema::SchemaIdTree
source · pub enum SchemaIdTree {
Tuple(Vec<Self>),
Path {
path: Vec<String>,
args: Vec<Self>,
},
}
Variants§
Implementations§
Trait Implementations§
source§impl Clone for SchemaIdTree
impl Clone for SchemaIdTree
source§fn clone(&self) -> SchemaIdTree
fn clone(&self) -> SchemaIdTree
Returns a copy 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 SchemaIdTree
impl Debug for SchemaIdTree
source§impl<'de> Deserialize<'de> for SchemaIdTree
impl<'de> Deserialize<'de> for SchemaIdTree
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 Display for SchemaIdTree
impl Display for SchemaIdTree
source§impl From<SchemaIdTree> for SchemaId
impl From<SchemaIdTree> for SchemaId
source§fn from(tree: SchemaIdTree) -> Self
fn from(tree: SchemaIdTree) -> Self
Converts to this type from the input type.
source§impl From<SchemaIdTree> for SchemaIdContainer
impl From<SchemaIdTree> for SchemaIdContainer
source§fn from(tree: SchemaIdTree) -> Self
fn from(tree: SchemaIdTree) -> Self
Converts to this type from the input type.
source§impl Hash for SchemaIdTree
impl Hash for SchemaIdTree
source§impl PartialEq<SchemaIdTree> for SchemaIdTree
impl PartialEq<SchemaIdTree> for SchemaIdTree
source§fn eq(&self, other: &SchemaIdTree) -> bool
fn eq(&self, other: &SchemaIdTree) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SchemaIdTree
impl Serialize for SchemaIdTree
source§impl TryFrom<SchemaId> for SchemaIdTree
impl TryFrom<SchemaId> for SchemaIdTree
impl Eq for SchemaIdTree
impl StructuralEq for SchemaIdTree
impl StructuralPartialEq for SchemaIdTree
Auto Trait Implementations§
impl RefUnwindSafe for SchemaIdTree
impl Send for SchemaIdTree
impl Sync for SchemaIdTree
impl Unpin for SchemaIdTree
impl UnwindSafe for SchemaIdTree
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.