pub enum StructureCheck {
Pass,
Fail,
}Expand description
Outcome of a single structural check.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for StructureCheck
impl Clone for StructureCheck
Source§fn clone(&self) -> StructureCheck
fn clone(&self) -> StructureCheck
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 StructureCheck
Source§impl Debug for StructureCheck
impl Debug for StructureCheck
impl Eq for StructureCheck
Source§impl PartialEq for StructureCheck
impl PartialEq for StructureCheck
Source§fn eq(&self, other: &StructureCheck) -> bool
fn eq(&self, other: &StructureCheck) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StructureCheck
Auto Trait Implementations§
impl Freeze for StructureCheck
impl RefUnwindSafe for StructureCheck
impl Send for StructureCheck
impl Sync for StructureCheck
impl Unpin for StructureCheck
impl UnsafeUnpin for StructureCheck
impl UnwindSafe for StructureCheck
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