pub enum CoordinateType {
Elliptical(EllipticalCoordinate),
Cartesian(CartesianCoordinate),
Horizontal(HorizontalCoordinate),
}
Expand description
A generic coordinate type that does not distinguish between a RelativeCoordinateType or an AbsoluteCoordinateType.
Variants§
Trait Implementations§
Source§impl Clone for CoordinateType
impl Clone for CoordinateType
Source§fn clone(&self) -> CoordinateType
fn clone(&self) -> CoordinateType
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 CoordinateType
impl Debug for CoordinateType
Source§impl PartialEq for CoordinateType
impl PartialEq for CoordinateType
impl Copy for CoordinateType
impl StructuralPartialEq for CoordinateType
Auto Trait Implementations§
impl Freeze for CoordinateType
impl RefUnwindSafe for CoordinateType
impl Send for CoordinateType
impl Sync for CoordinateType
impl Unpin for CoordinateType
impl UnwindSafe for CoordinateType
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