Struct google_dlp2_beta1::GoogleTypeTimeOfDay[][src]

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

Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose 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

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

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.

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.

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

Trait Implementations

impl Default for GoogleTypeTimeOfDay
[src]

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

impl Clone for GoogleTypeTimeOfDay
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GoogleTypeTimeOfDay
[src]

Formats the value using the given formatter. Read more

impl Part for GoogleTypeTimeOfDay
[src]

Auto Trait Implementations