[][src]Struct amadeus_types::Timezone

pub struct Timezone { /* fields omitted */ }

A timezone. It can have a varying offset, like Europe/London, or fixed like GMT+1.

Implementations

impl Timezone[src]

pub const UTC: Self[src]

pub const GMT: Self[src]

pub const GMT_MINUS_1: Self[src]

pub const GMT_MINUS_2: Self[src]

pub const GMT_MINUS_3: Self[src]

pub const GMT_MINUS_4: Self[src]

pub const GMT_MINUS_5: Self[src]

pub const GMT_MINUS_6: Self[src]

pub const GMT_MINUS_7: Self[src]

pub const GMT_MINUS_8: Self[src]

pub const GMT_MINUS_9: Self[src]

pub const GMT_MINUS_10: Self[src]

pub const GMT_MINUS_11: Self[src]

pub const GMT_MINUS_12: Self[src]

pub const GMT_PLUS_1: Self[src]

pub const GMT_PLUS_2: Self[src]

pub const GMT_PLUS_3: Self[src]

pub const GMT_PLUS_4: Self[src]

pub const GMT_PLUS_5: Self[src]

pub const GMT_PLUS_6: Self[src]

pub const GMT_PLUS_7: Self[src]

pub const GMT_PLUS_8: Self[src]

pub const GMT_PLUS_9: Self[src]

pub const GMT_PLUS_10: Self[src]

pub const GMT_PLUS_11: Self[src]

pub const GMT_PLUS_12: Self[src]

pub const GMT_PLUS_13: Self[src]

pub const GMT_PLUS_14: Self[src]

pub fn from_name(name: &str) -> Option<Self>[src]

Create a new Timezone from a name in the IANA Database.

pub fn as_name(&self) -> Option<&'static str>[src]

Get the name of the timezone as in the IANA Database. It might differ from (although still be equivalent to) the name given to from_name.

pub fn from_offset(seconds: i32) -> Option<Self>[src]

Makes a new Timezone for the Eastern Hemisphere with given timezone difference. The negative seconds means the Western Hemisphere.

pub fn as_offset(&self) -> Option<i32>[src]

Returns the number of seconds to add to convert from UTC to the local time.

pub fn as_offset_at(&self, utc_date_time: &DateTime) -> i32[src]

Returns the number of seconds to add to convert from UTC to the local time.

Trait Implementations

impl AmadeusOrd for Timezone[src]

impl Clone for Timezone[src]

impl Copy for Timezone[src]

impl Data for Timezone[src]

type Vec = Vec<Self>

type DynamicType = ()

impl Debug for Timezone[src]

impl<'de> Deserialize<'de> for Timezone[src]

impl Display for Timezone[src]

impl DowncastFrom<Value> for Timezone[src]

impl Eq for Timezone[src]

impl From<Timezone> for Value[src]

impl FromStr for Timezone[src]

type Err = ParseDateError

The associated error which can be returned from parsing.

impl Hash for Timezone[src]

impl Ord for Timezone[src]

impl PartialEq<Timezone> for Timezone[src]

impl PartialEq<Timezone> for Value[src]

impl PartialOrd<Timezone> for Timezone[src]

impl Serialize for Timezone[src]

impl StructuralEq for Timezone[src]

impl StructuralPartialEq for Timezone[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, U> Cast<U> for T where
    U: FromCast<T>, 

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<A, B> Downcast<A> for B where
    A: DowncastFrom<B>, 
[src]

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

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

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

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> ProcessSend for T where
    T: Send + Serialize + for<'de> Deserialize<'de> + ?Sized
[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,