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 · 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 IsochronePolygonMethod
impl Debug for IsochronePolygonMethod
Source§impl PartialEq for IsochronePolygonMethod
impl PartialEq for IsochronePolygonMethod
impl Copy for IsochronePolygonMethod
impl Eq for IsochronePolygonMethod
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