pub enum BoundaryPath {
Circle,
GreatCircle,
RhumbLine,
CounterClockwiseArc,
ClockwiseArc,
}Expand description
The path type for a boundary segment.
Variants§
Circle
Circle defined by center point and radius.
GreatCircle
Great circle path to next point.
RhumbLine
Rhumb line (constant bearing) to next point.
CounterClockwiseArc
Counter-clockwise arc around arc origin.
ClockwiseArc
Clockwise arc around arc origin.
Trait Implementations§
Source§impl Clone for BoundaryPath
impl Clone for BoundaryPath
Source§fn clone(&self) -> BoundaryPath
fn clone(&self) -> BoundaryPath
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 BoundaryPath
impl Debug for BoundaryPath
Source§impl Hash for BoundaryPath
impl Hash for BoundaryPath
Source§impl Ord for BoundaryPath
impl Ord for BoundaryPath
Source§fn cmp(&self, other: &BoundaryPath) -> Ordering
fn cmp(&self, other: &BoundaryPath) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for BoundaryPath
impl PartialEq for BoundaryPath
Source§impl PartialOrd for BoundaryPath
impl PartialOrd for BoundaryPath
impl Copy for BoundaryPath
impl Eq for BoundaryPath
impl StructuralPartialEq for BoundaryPath
Auto Trait Implementations§
impl Freeze for BoundaryPath
impl RefUnwindSafe for BoundaryPath
impl Send for BoundaryPath
impl Sync for BoundaryPath
impl Unpin for BoundaryPath
impl UnsafeUnpin for BoundaryPath
impl UnwindSafe for BoundaryPath
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