pub enum SchemaKind {
Show 13 variants
Any,
Text,
Integer,
Float,
Boolean,
Null,
Literal,
Array,
Map,
Record,
Tuple,
Union,
Reference,
}Expand description
The kind of a schema node (discriminant without data).
Variants§
Trait Implementations§
Source§impl Clone for SchemaKind
impl Clone for SchemaKind
Source§fn clone(&self) -> SchemaKind
fn clone(&self) -> SchemaKind
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 SchemaKind
impl Debug for SchemaKind
Source§impl Display for SchemaKind
impl Display for SchemaKind
Source§impl Hash for SchemaKind
impl Hash for SchemaKind
Source§impl PartialEq for SchemaKind
impl PartialEq for SchemaKind
impl Copy for SchemaKind
impl Eq for SchemaKind
impl StructuralPartialEq for SchemaKind
Auto Trait Implementations§
impl Freeze for SchemaKind
impl RefUnwindSafe for SchemaKind
impl Send for SchemaKind
impl Sync for SchemaKind
impl Unpin for SchemaKind
impl UnwindSafe for SchemaKind
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.