pub enum CompassDirection {
Heading(Heading),
Track(Track),
Bearing(Bearing),
Course(Course),
Azimuth(Azimuth),
}
Expand description
Variants§
Trait Implementations§
Source§impl Clone for CompassDirection
impl Clone for CompassDirection
Source§fn clone(&self) -> CompassDirection
fn clone(&self) -> CompassDirection
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 CompassDirection
impl Debug for CompassDirection
Source§impl Display for CompassDirection
impl Display for CompassDirection
Source§impl PartialEq for CompassDirection
impl PartialEq for CompassDirection
impl Copy for CompassDirection
impl StructuralPartialEq for CompassDirection
Auto Trait Implementations§
impl Freeze for CompassDirection
impl RefUnwindSafe for CompassDirection
impl Send for CompassDirection
impl Sync for CompassDirection
impl Unpin for CompassDirection
impl UnwindSafe for CompassDirection
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