pub struct RawCoord {
pub degrees: u8,
pub minute_thousandths: u16,
pub sign: Compass,
}
Expand description
Represents a latitude OR longitude, closely representing the form used in IGC files.
Fields§
§degrees: u8
§minute_thousandths: u16
§sign: Compass
Trait Implementations§
impl Copy for RawCoord
impl Eq for RawCoord
impl StructuralPartialEq for RawCoord
Auto Trait Implementations§
impl Freeze for RawCoord
impl RefUnwindSafe for RawCoord
impl Send for RawCoord
impl Sync for RawCoord
impl Unpin for RawCoord
impl UnwindSafe for RawCoord
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