pub trait IsoTimeInput {
    fn hour(&self) -> Option<IsoHour>;
    fn minute(&self) -> Option<IsoMinute>;
    fn second(&self) -> Option<IsoSecond>;
    fn nanosecond(&self) -> Option<NanoSecond>;
}
Expand description

Representation of a time of day according to ISO-8601 conventions. Always indexed from midnight, regardless of calendar system.

All fields are optional. If a field is not present but is required when formatting, an error result will be returned from the formatter.

All data represented in IsoTimeInput should be locale-agnostic.

Required methods

Gets the hour input.

Gets the minute input.

Gets the second input.

Gets the nanosecond input.

Implementors