pub enum AreaMethod {
Planar,
Geodetic,
SignedPlanar,
}Expand description
Area calculation method
Variants§
Planar
Planar area using Cartesian coordinates (fast, for projected data)
Geodetic
Geodetic area on WGS84 ellipsoid (accurate for lat/lon coordinates)
SignedPlanar
Signed planar area (preserves orientation)
Trait Implementations§
Source§impl Clone for AreaMethod
impl Clone for AreaMethod
Source§fn clone(&self) -> AreaMethod
fn clone(&self) -> AreaMethod
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 AreaMethod
impl Debug for AreaMethod
Source§impl PartialEq for AreaMethod
impl PartialEq for AreaMethod
impl Copy for AreaMethod
impl Eq for AreaMethod
impl StructuralPartialEq for AreaMethod
Auto Trait Implementations§
impl Freeze for AreaMethod
impl RefUnwindSafe for AreaMethod
impl Send for AreaMethod
impl Sync for AreaMethod
impl Unpin for AreaMethod
impl UnsafeUnpin for AreaMethod
impl UnwindSafe for AreaMethod
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