pub enum DensityMapError {
WrongDataLength(usize, usize),
}Expand description
Error thrown during density map generation.
Variants§
Trait Implementations§
Source§impl Clone for DensityMapError
impl Clone for DensityMapError
Source§fn clone(&self) -> DensityMapError
fn clone(&self) -> DensityMapError
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 DensityMapError
Source§impl Debug for DensityMapError
impl Debug for DensityMapError
Source§impl PartialEq for DensityMapError
impl PartialEq for DensityMapError
Source§fn eq(&self, other: &DensityMapError) -> bool
fn eq(&self, other: &DensityMapError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DensityMapError
Auto Trait Implementations§
impl Freeze for DensityMapError
impl RefUnwindSafe for DensityMapError
impl Send for DensityMapError
impl Sync for DensityMapError
impl Unpin for DensityMapError
impl UnsafeUnpin for DensityMapError
impl UnwindSafe for DensityMapError
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