Struct google_classroom1::TimeOfDay [] [src]

pub struct TimeOfDay {
    pub hours: Option<i32>,
    pub seconds: Option<i32>,
    pub minutes: Option<i32>,
    pub nanos: Option<i32>,
}

Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may chose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp.

This type is not used in any activity, and only used as part of another schema.

Fields

Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.

Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.

Minutes of hour of day. Must be from 0 to 59.

Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.

Trait Implementations

impl Debug for TimeOfDay
[src]

Formats the value using the given formatter.

impl Clone for TimeOfDay
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for TimeOfDay
[src]

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

impl Part for TimeOfDay
[src]