[][src]Enum zmanim::prelude::tz::etc::Etc

#[non_exhaustive]
pub enum Etc {
    GMT,
    GMT0,
    GMTMinus0,
    GMTMinus1,
    GMTMinus2,
    GMTMinus3,
    GMTMinus4,
    GMTMinus5,
    GMTMinus6,
    GMTMinus7,
    GMTMinus8,
    GMTMinus9,
    GMTMinus10,
    GMTMinus11,
    GMTMinus12,
    GMTMinus13,
    GMTMinus14,
    GMTPlus0,
    GMTPlus1,
    GMTPlus2,
    GMTPlus3,
    GMTPlus4,
    GMTPlus5,
    GMTPlus6,
    GMTPlus7,
    GMTPlus8,
    GMTPlus9,
    GMTPlus10,
    GMTPlus11,
    GMTPlus12,
    Greenwich,
    UCT,
    UTC,
    Universal,
    Zulu,
}

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
GMT
GMT0
GMTMinus0
GMTMinus1
GMTMinus2
GMTMinus3
GMTMinus4
GMTMinus5
GMTMinus6
GMTMinus7
GMTMinus8
GMTMinus9
GMTMinus10
GMTMinus11
GMTMinus12
GMTMinus13
GMTMinus14
GMTPlus0
GMTPlus1
GMTPlus2
GMTPlus3
GMTPlus4
GMTPlus5
GMTPlus6
GMTPlus7
GMTPlus8
GMTPlus9
GMTPlus10
GMTPlus11
GMTPlus12
Greenwich
UCT
UTC
Universal
Zulu

Trait Implementations

impl Clone for Etc[src]

impl Debug for Etc[src]

impl FromStr for Etc[src]

type Err = ParseError

The associated error which can be returned from parsing.

Auto Trait Implementations

impl RefUnwindSafe for Etc

impl Send for Etc

impl Sync for Etc

impl Unpin for Etc

impl UnwindSafe for Etc

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.