pub enum IsoFormat {
    Basic,
    Extended,
    UtcBasic,
    UtcExtended,
}
Expand description

Determines which ISO-8601 format should be used to format a GmtOffset.

Variants

Basic

ISO-8601 Basic Format. Formats zero-offset numerically. e.g. +0500, +0000

Extended

ISO-8601 Extended Format. Formats zero-offset numerically. e.g. +05:00, +00:00

UtcBasic

ISO-8601 Basic Format. Formats zero-offset with the ISO-8601 UTC indicator: “Z” e.g. +0500, Z

UtcExtended

ISO-8601 Extended Format. Formats zero-offset with the ISO-8601 UTC indicator: “Z” e.g. +05:00, Z

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.