Struct time_hms::TimeHMS

source ·
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).unwrap();

// 3723 seconds equal 1 hour, 2 minutes and 3 seconds
assert_eq!(t.h(), 1);
assert_eq!(t.m(), 2);
assert_eq!(t.s(), 3);

// A default way to format! / println! is included
assert_eq!(format!("{}", t), "01:02:03")

Implementations§

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.

Trait Implementations§

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.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
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.