[][src]Enum datetime_string::common::TimeOffsetSign

pub enum TimeOffsetSign {
    Negative,
    Positive,
}

Sign of a time offset.

Variants

Negative

Negative time offset.

Positive

Positive time offset.

Trait Implementations

impl Clone for TimeOffsetSign[src]

impl Copy for TimeOffsetSign[src]

impl Debug for TimeOffsetSign[src]

impl Eq for TimeOffsetSign[src]

impl Hash for TimeOffsetSign[src]

impl Ord for TimeOffsetSign[src]

impl PartialEq<TimeOffsetSign> for TimeOffsetSign[src]

impl PartialOrd<TimeOffsetSign> for TimeOffsetSign[src]

impl StructuralEq for TimeOffsetSign[src]

impl StructuralPartialEq for TimeOffsetSign[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.