#[non_exhaustive]pub enum SphericalValidationLayer {
Realization,
Delaunay,
}Expand description
Spherical validation layer named in prototype diagnostics.
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.
Realization
Level 4 curved realization validation.
Delaunay
Level 5 spherical Delaunay predicate validation.
Trait Implementations§
Source§impl Clone for SphericalValidationLayer
impl Clone for SphericalValidationLayer
Source§fn clone(&self) -> SphericalValidationLayer
fn clone(&self) -> SphericalValidationLayer
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 SphericalValidationLayer
Source§impl Debug for SphericalValidationLayer
impl Debug for SphericalValidationLayer
Source§impl Display for SphericalValidationLayer
impl Display for SphericalValidationLayer
impl Eq for SphericalValidationLayer
Source§impl PartialEq for SphericalValidationLayer
impl PartialEq for SphericalValidationLayer
impl StructuralPartialEq for SphericalValidationLayer
Auto Trait Implementations§
impl Freeze for SphericalValidationLayer
impl RefUnwindSafe for SphericalValidationLayer
impl Send for SphericalValidationLayer
impl Sync for SphericalValidationLayer
impl Unpin for SphericalValidationLayer
impl UnsafeUnpin for SphericalValidationLayer
impl UnwindSafe for SphericalValidationLayer
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