Enum temporenc::OffsetValue [] [src]

pub enum OffsetValue {
    None,
    SpecifiedElsewhere,
    UtcOffset(i16),
}

Variants

Offset not specified.

Temporal value is not at UTC, but the timezone is not specified here

Temporal value is offset from UTC by the specified number of minutes. The number of minutes must be a multiple of 15.

Trait Implementations

impl Debug for OffsetValue
[src]

Formats the value using the given formatter.

impl PartialEq for OffsetValue
[src]

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

This method tests for !=.

impl Eq for OffsetValue
[src]

impl Clone for OffsetValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for OffsetValue
[src]