[][src]Struct rust_openttd_admin::types::Date

pub struct Date(_);

An OpenTTD date.

Methods

impl Date[src]

pub fn to_openttd_date(self) -> u32[src]

Returns the OpenTTD value this date represents.

pub fn from_openttd_date(date: u32) -> Result<Date, DateError>[src]

Returns the date this OpenTTD value represents.

pub fn to_ymd(self) -> (u32, u32, u32)[src]

Convert a date to a year, month and day. The year will range from 0 to 5.000.000, the month from 0 to 11 and the day from 0 to 31.

pub fn from_ymd(year: u32, month: u32, day: u32) -> Result<Date, DateError>[src]

Convert a year, month and day to a date. The year should be in the range 0 to 5.000.000, and the date should exist.

Trait Implementations

impl Copy for Date[src]

impl Clone for Date[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<Date> for Date[src]

impl PartialOrd<Date> for Date[src]

impl Eq for Date[src]

impl Ord for Date[src]

default fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

default fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

default fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Display for Date[src]

impl Hash for Date[src]

default fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Date[src]

impl Serialize for Date[src]

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

Auto Trait Implementations

impl Send for Date

impl Sync for Date

Blanket Implementations

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

type Owned = T

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

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]