pub enum ValidationAttempted {
None,
Partial,
Full,
}Expand description
How much validation was attempted on a node (PSVI [validation attempted])
Variants§
None
No validation was attempted
Partial
Some but not all descendants were validated
Full
Full validation was performed on this node and all descendants
Trait Implementations§
Source§impl Clone for ValidationAttempted
impl Clone for ValidationAttempted
Source§fn clone(&self) -> ValidationAttempted
fn clone(&self) -> ValidationAttempted
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 ValidationAttempted
Source§impl Debug for ValidationAttempted
impl Debug for ValidationAttempted
Source§impl Default for ValidationAttempted
impl Default for ValidationAttempted
Source§fn default() -> ValidationAttempted
fn default() -> ValidationAttempted
Returns the “default value” for a type. Read more
impl Eq for ValidationAttempted
Source§impl PartialEq for ValidationAttempted
impl PartialEq for ValidationAttempted
Source§fn eq(&self, other: &ValidationAttempted) -> bool
fn eq(&self, other: &ValidationAttempted) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ValidationAttempted
Auto Trait Implementations§
impl Freeze for ValidationAttempted
impl RefUnwindSafe for ValidationAttempted
impl Send for ValidationAttempted
impl Sync for ValidationAttempted
impl Unpin for ValidationAttempted
impl UnsafeUnpin for ValidationAttempted
impl UnwindSafe for ValidationAttempted
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