pub enum PointCorrectness {
None,
Multiple(u64),
Pred(Arc<dyn CanBePred>),
}Variants§
Implementations§
Source§impl PointCorrectness
impl PointCorrectness
pub fn show_issue(&self, f: &mut Formatter<'_>) -> Result
Trait Implementations§
Source§impl Clone for PointCorrectness
impl Clone for PointCorrectness
Source§fn clone(&self) -> PointCorrectness
fn clone(&self) -> PointCorrectness
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 PointCorrectness
impl Debug for PointCorrectness
Source§impl PartialEq for PointCorrectness
impl PartialEq for PointCorrectness
Auto Trait Implementations§
impl Freeze for PointCorrectness
impl !RefUnwindSafe for PointCorrectness
impl Send for PointCorrectness
impl Sync for PointCorrectness
impl Unpin for PointCorrectness
impl !UnwindSafe for PointCorrectness
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