[][src]Enum ion_c_sys::timestamp::TSOffsetKind

pub enum TSOffsetKind {
    KnownOffset,
    UnknownOffset,
}

The kind of offset associated with a IonDateTime.

This is generally some specific FixedOffset associated with the DateTime, but in the case of a timestamp with an unknown UTC offset, this will be Unknown, and the effective FixedOffset will be UTC+00:00--this allows an application to preserve the difference between UTC+00:00 (zulu time) and UTC-00:00 which is the unknown offset.

Variants

KnownOffset
UnknownOffset

Trait Implementations

impl Clone for TSOffsetKind[src]

impl Copy for TSOffsetKind[src]

impl Debug for TSOffsetKind[src]

impl PartialEq<TSOffsetKind> for TSOffsetKind[src]

impl StructuralPartialEq for TSOffsetKind[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.