[][src]Struct date_time::month_tuple::MonthTuple

pub struct MonthTuple { /* fields omitted */ }

A container for a month of a specific year.

NOTE: MonthTuple's m field is one-based (one represents January) as of version 2.0.0.

Only handles values between Jan 0000 and Dec 9999 (inclusive).

Methods

impl MonthTuple[src]

pub fn new(y: u16, m: u8) -> Result<MonthTuple, String>[src]

Produces a new MonthTuple.

Only accepts a valid month value (1 <= m <= 12).

Only accepts a valid year value (0 <= y <= 9999).

pub fn this_month() -> MonthTuple[src]

Returns a MonthTuple of the current month according to the system clock.

pub fn get_year(&self) -> u16[src]

pub fn get_month(&self) -> u8[src]

Retrieves the month component of the tuple.

Note this month is ONE-BASED (one represents January).

pub fn next_month(self) -> MonthTuple[src]

Gets a MonthTuple representing the month immediately following the current one. Will not go past Dec 9999.

pub fn previous_month(self) -> MonthTuple[src]

Gets a MonthTuple representing the month immediately preceding the current one. Will not go past Jan 0000.

pub fn add_months(&mut self, months: u32)[src]

Adds a number of months to a MonthTuple.

pub fn subtract_months(&mut self, months: u32)[src]

Subtracts a number of months from a MonthTuple.

pub fn add_years(&mut self, years: u16)[src]

Adds a number of years to a MonthTuple.

pub fn subtract_years(&mut self, years: u16)[src]

Subtracts a number of years from a MonthTuple.

pub fn to_readable_string(&self) -> String[src]

Returns the month formatted to be human-readable.

Examples

  • Jan 2018
  • Dec 1994

Trait Implementations

impl Eq for MonthTuple[src]

impl Copy for MonthTuple[src]

impl PartialOrd<MonthTuple> for MonthTuple[src]

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq<MonthTuple> for MonthTuple[src]

impl From<DateTuple> for MonthTuple[src]

impl Clone for MonthTuple[src]

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

Performs copy-assignment from source. Read more

impl Ord for MonthTuple[src]

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

Compares and returns the maximum of two values. Read more

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

Compares and returns the minimum of two values. Read more

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 MonthTuple[src]

impl Debug for MonthTuple[src]

impl FromStr for MonthTuple[src]

type Err = String

The associated error which can be returned from parsing.

Auto Trait Implementations

impl Send for MonthTuple

impl Sync for MonthTuple

Blanket Implementations

impl<T, U> Into 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> From for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[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.