[][src]Struct amadeus::data::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: Timezone[src]

pub const GMT: Timezone[src]

pub const GMT_MINUS_1: Timezone[src]

pub const GMT_MINUS_2: Timezone[src]

pub const GMT_MINUS_3: Timezone[src]

pub const GMT_MINUS_4: Timezone[src]

pub const GMT_MINUS_5: Timezone[src]

pub const GMT_MINUS_6: Timezone[src]

pub const GMT_MINUS_7: Timezone[src]

pub const GMT_MINUS_8: Timezone[src]

pub const GMT_MINUS_9: Timezone[src]

pub const GMT_MINUS_10: Timezone[src]

pub const GMT_MINUS_11: Timezone[src]

pub const GMT_MINUS_12: Timezone[src]

pub const GMT_PLUS_1: Timezone[src]

pub const GMT_PLUS_2: Timezone[src]

pub const GMT_PLUS_3: Timezone[src]

pub const GMT_PLUS_4: Timezone[src]

pub const GMT_PLUS_5: Timezone[src]

pub const GMT_PLUS_6: Timezone[src]

pub const GMT_PLUS_7: Timezone[src]

pub const GMT_PLUS_8: Timezone[src]

pub const GMT_PLUS_9: Timezone[src]

pub const GMT_PLUS_10: Timezone[src]

pub const GMT_PLUS_11: Timezone[src]

pub const GMT_PLUS_12: Timezone[src]

pub const GMT_PLUS_13: Timezone[src]

pub const GMT_PLUS_14: Timezone[src]

pub fn from_name(name: &str) -> Option<Timezone>[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<Timezone>[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]

impl Data for Timezone[src]

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 ParquetData for Timezone[src]

type Schema = StringSchema

type Reader = impl Reader<Item = Timezone>

type Predicate = Predicate

impl PartialEq<Timezone> for Timezone[src]

impl PartialEq<Timezone> for Value[src]

impl PartialOrd<Timezone> for Timezone[src]

impl PostgresData for Timezone[src]

impl SerdeData 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> Any for T where
    T: Any + Serialize + Deserialize
[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> Debug for T where
    T: Debug + Serialize + Deserialize + ?Sized
[src]

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

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

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[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> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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

impl<T> Serialize for T where
    T: Serialize + ?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<T> Type for T where
    T: ?Sized
[src]

impl<T> Type for T[src]

type Meta = Concrete

Type of metadata for type.

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