pub enum ValidationStatus {
NotValidated,
Valid,
Invalid,
}Expand description
Module validation status metadata.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ValidationStatus
impl Clone for ValidationStatus
Source§fn clone(&self) -> ValidationStatus
fn clone(&self) -> ValidationStatus
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 moreSource§impl Debug for ValidationStatus
impl Debug for ValidationStatus
Source§impl Default for ValidationStatus
impl Default for ValidationStatus
Source§fn default() -> ValidationStatus
fn default() -> ValidationStatus
Returns the “default value” for a type. Read more
Source§impl Hash for ValidationStatus
impl Hash for ValidationStatus
Source§impl Ord for ValidationStatus
impl Ord for ValidationStatus
Source§fn cmp(&self, other: &ValidationStatus) -> Ordering
fn cmp(&self, other: &ValidationStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ValidationStatus
impl PartialEq for ValidationStatus
Source§fn eq(&self, other: &ValidationStatus) -> bool
fn eq(&self, other: &ValidationStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ValidationStatus
impl PartialOrd for ValidationStatus
impl Copy for ValidationStatus
impl Eq for ValidationStatus
impl StructuralPartialEq for ValidationStatus
Auto Trait Implementations§
impl Freeze for ValidationStatus
impl RefUnwindSafe for ValidationStatus
impl Send for ValidationStatus
impl Sync for ValidationStatus
impl Unpin for ValidationStatus
impl UnsafeUnpin for ValidationStatus
impl UnwindSafe for ValidationStatus
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