Enum nd_triangulation::TriangulationError[][src]

#[non_exhaustive]pub enum TriangulationError {
    WrongDimension {
        actual_dim: usize,
        expected_dim: usize,
    },
}

Error Type for Triangulation Errors

Variants (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.
WrongDimension

Returned if a vertex of the wrong dimension is added.

Fields of WrongDimension

actual_dim: usizeexpected_dim: usize

Trait Implementations

impl Debug for TriangulationError[src]

impl Display for TriangulationError[src]

impl Eq for TriangulationError[src]

impl Error for TriangulationError[src]

impl PartialEq<TriangulationError> for TriangulationError[src]

impl StructuralEq for TriangulationError[src]

impl StructuralPartialEq for TriangulationError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.