pub enum SchemaValidity {
NotKnown,
Valid,
Invalid,
}Expand description
Validity status of a validated node
Variants§
NotKnown
Validity has not been determined
Valid
The node is valid according to the schema
Invalid
The node is invalid according to the schema
Trait Implementations§
Source§impl Clone for SchemaValidity
impl Clone for SchemaValidity
Source§fn clone(&self) -> SchemaValidity
fn clone(&self) -> SchemaValidity
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 moreimpl Copy for SchemaValidity
Source§impl Debug for SchemaValidity
impl Debug for SchemaValidity
Source§impl Default for SchemaValidity
impl Default for SchemaValidity
Source§fn default() -> SchemaValidity
fn default() -> SchemaValidity
Returns the “default value” for a type. Read more
impl Eq for SchemaValidity
Source§impl PartialEq for SchemaValidity
impl PartialEq for SchemaValidity
Source§fn eq(&self, other: &SchemaValidity) -> bool
fn eq(&self, other: &SchemaValidity) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SchemaValidity
Auto Trait Implementations§
impl Freeze for SchemaValidity
impl RefUnwindSafe for SchemaValidity
impl Send for SchemaValidity
impl Sync for SchemaValidity
impl Unpin for SchemaValidity
impl UnsafeUnpin for SchemaValidity
impl UnwindSafe for SchemaValidity
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