struct HMS {
hour: ri64<{ _ }, { _ }>,
minute: ri64<{ _ }, { _ }>,
second: ri64<{ _ }, { _ }>,
fraction: Option<ri32<0, { _ }>>,
}
Expand description
A type that represents the parsed components of HH:MM:SS[.fraction]
.
Fields§
§hour: ri64<{ _ }, { _ }>
§minute: ri64<{ _ }, { _ }>
§second: ri64<{ _ }, { _ }>
§fraction: Option<ri32<0, { _ }>>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HMS
impl RefUnwindSafe for HMS
impl Send for HMS
impl Sync for HMS
impl Unpin 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