pub enum GenerateDensityMeshError {
DensityMap(DensityMapError),
UninitializedGenerator,
FailedTriangulation,
NothingCreated,
}
Expand description
Error thrown during density mesh generation.
Variants§
DensityMap(DensityMapError)
Density map error.
UninitializedGenerator
Trying to process unitialized generator.
FailedTriangulation
Failed points triangulation.
NothingCreated
There is no density mesh created.
Trait Implementations§
Source§impl Clone for GenerateDensityMeshError
impl Clone for GenerateDensityMeshError
Source§fn clone(&self) -> GenerateDensityMeshError
fn clone(&self) -> GenerateDensityMeshError
Returns a copy 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 GenerateDensityMeshError
impl Debug for GenerateDensityMeshError
Source§impl PartialEq for GenerateDensityMeshError
impl PartialEq for GenerateDensityMeshError
impl StructuralPartialEq for GenerateDensityMeshError
Auto Trait Implementations§
impl Freeze for GenerateDensityMeshError
impl RefUnwindSafe for GenerateDensityMeshError
impl Send for GenerateDensityMeshError
impl Sync for GenerateDensityMeshError
impl Unpin for GenerateDensityMeshError
impl UnwindSafe for GenerateDensityMeshError
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