[][src]Enum density_mesh_core::mesh::GenerateDensityMeshError

pub enum GenerateDensityMeshError {
    DensityMap(DensityMapError),
    UninitializedGenerator,
    FailedTriangulation,
    AlreadyCompleted(DensityMesh),
}

Error thrown during density mesh generation.

Variants

DensityMap(DensityMapError)

Density map error.

UninitializedGenerator

Trying to process unitialized generator.

FailedTriangulation

Failed points triangulation.

AlreadyCompleted(DensityMesh)

Trying to process aready completed generation.

Trait Implementations

impl Clone for GenerateDensityMeshError[src]

impl Debug for GenerateDensityMeshError[src]

impl PartialEq<GenerateDensityMeshError> for GenerateDensityMeshError[src]

impl StructuralPartialEq for GenerateDensityMeshError[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.