#[non_exhaustive]pub enum DelaunayValidationLevel {
One,
Two,
Three,
Four,
}Expand description
Highest cumulative upstream Delaunay validation level being enforced.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
One
Validate Level 1 only.
Two
Validate Levels 1 through 2.
Three
Validate Levels 1 through 3.
Four
Validate Levels 1 through 4.
Trait Implementations§
Source§impl Clone for DelaunayValidationLevel
impl Clone for DelaunayValidationLevel
Source§fn clone(&self) -> DelaunayValidationLevel
fn clone(&self) -> DelaunayValidationLevel
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 DelaunayValidationLevel
impl Debug for DelaunayValidationLevel
Source§impl Display for DelaunayValidationLevel
impl Display for DelaunayValidationLevel
Source§impl Hash for DelaunayValidationLevel
impl Hash for DelaunayValidationLevel
Source§impl Ord for DelaunayValidationLevel
impl Ord for DelaunayValidationLevel
Source§fn cmp(&self, other: &DelaunayValidationLevel) -> Ordering
fn cmp(&self, other: &DelaunayValidationLevel) -> 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 DelaunayValidationLevel
impl PartialEq for DelaunayValidationLevel
Source§fn eq(&self, other: &DelaunayValidationLevel) -> bool
fn eq(&self, other: &DelaunayValidationLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for DelaunayValidationLevel
impl PartialOrd for DelaunayValidationLevel
impl Copy for DelaunayValidationLevel
impl Eq for DelaunayValidationLevel
impl StructuralPartialEq for DelaunayValidationLevel
Auto Trait Implementations§
impl Freeze for DelaunayValidationLevel
impl RefUnwindSafe for DelaunayValidationLevel
impl Send for DelaunayValidationLevel
impl Sync for DelaunayValidationLevel
impl Unpin for DelaunayValidationLevel
impl UnsafeUnpin for DelaunayValidationLevel
impl UnwindSafe for DelaunayValidationLevel
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