pub struct TimeHMS { /* private fields */ }
Expand description
TimeHMS parses a duration in seconds to a more human-readable representation
in hours, minutes and seconds.
use time_hms::TimeHMS;
let t = TimeHMS::new(3723);
assert_eq!(t.h(), 1);
assert_eq!(t.m(), 2);
assert_eq!(t.s(), 3);
assert_eq!(format!("{}", t), "01:02:03")
Converts a duration from a representation in seconds
into a representation in hours, minutes and seconds.
Returns the hour part of the duration.
Returns the minute part of the duration.
Returns the seconds part of the duration.
Formats the value using the given formatter.
Read more
Formats the value using the given formatter.
Read more
This method tests for self and other values to be equal, and is used
by ==.
This method tests for !=. The default implementation is almost always
sufficient, and should not be overridden without very good reason.
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
Returns the argument unchanged.
Calls U::from(self).
That is, this conversion is whatever the implementation of
From<T> for U chooses to do.
Converts the given value to a
String.
Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.