Struct iso8601::Time [] [src]

pub struct Time {
    pub hour: u32,
    pub minute: u32,
    pub second: u32,
    pub millisecond: u32,
    pub tz_offset_hours: i32,
    pub tz_offset_minutes: i32,
}

A time object

Fields

a 24th of a day

60 discrete parts of an hour

a minute are 60 of these

everything after a .

depends on where you're at

Methods

impl Time
[src]

[src]

Trait Implementations

impl Eq for Time
[src]

impl PartialEq for Time
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Debug for Time
[src]

[src]

Formats the value using the given formatter.

impl Copy for Time
[src]

impl Clone for Time
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Time
[src]

[src]

Returns the "default value" for a type. Read more