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.

Implementations on Foreign Types

Gets the hour input.

Gets the minute input.

Gets the second input.

Gets the fractional second input.

Implementors