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