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 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 DensityMapError
impl Debug for DensityMapError
Source§impl PartialEq for DensityMapError
impl PartialEq for DensityMapError
impl Copy for DensityMapError
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 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