pub enum IsochronePolygonMethod {
ConvexHull,
ConcaveHull,
}Expand description
Method for generating isochrone polygons
Variants§
ConvexHull
Convex hull (fast, less accurate)
ConcaveHull
Concave hull / alpha shape (slower, more accurate)
Trait Implementations§
Source§impl Clone for IsochronePolygonMethod
impl Clone for IsochronePolygonMethod
Source§fn clone(&self) -> IsochronePolygonMethod
fn clone(&self) -> IsochronePolygonMethod
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 IsochronePolygonMethod
Source§impl Debug for IsochronePolygonMethod
impl Debug for IsochronePolygonMethod
impl Eq for IsochronePolygonMethod
Source§impl PartialEq for IsochronePolygonMethod
impl PartialEq for IsochronePolygonMethod
Source§fn eq(&self, other: &IsochronePolygonMethod) -> bool
fn eq(&self, other: &IsochronePolygonMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IsochronePolygonMethod
Auto Trait Implementations§
impl Freeze for IsochronePolygonMethod
impl RefUnwindSafe for IsochronePolygonMethod
impl Send for IsochronePolygonMethod
impl Sync for IsochronePolygonMethod
impl Unpin for IsochronePolygonMethod
impl UnsafeUnpin for IsochronePolygonMethod
impl UnwindSafe for IsochronePolygonMethod
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