pub struct Dms {
pub sign: i8,
pub degrees: u32,
pub minutes: u32,
pub seconds: f64,
}Expand description
Degrees-minutes-seconds representation of an angle.
Fields§
§sign: i8§degrees: u32§minutes: u32§seconds: f64Trait Implementations§
impl Copy for Dms
impl StructuralPartialEq for Dms
Auto Trait Implementations§
impl Freeze for Dms
impl RefUnwindSafe for Dms
impl Send for Dms
impl Sync for Dms
impl Unpin for Dms
impl UnsafeUnpin for Dms
impl UnwindSafe for Dms
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