Enum devela::time::Month

source ·
#[repr(u8)]
pub enum Month { January = 0, February = 1, March = 2, April = 3, May = 4, June = 5, July = 6, August = 7, September = 8, October = 9, November = 10, December = 11, }
Expand description

The months of the year.

Variants§

§

January = 0

§

February = 1

§

March = 2

§

April = 3

§

May = 4

§

June = 5

§

July = 6

§

August = 7

§

September = 8

§

October = 9

§

November = 10

§

December = 11

Implementations§

source§

impl Month

source

pub const COUNT: usize = 12usize

The number of months in a year.

source

pub const fn len(self, leap: bool) -> u8

Returns the length in days of the current month, taking into account whether it’s a leap year, for february.

source

pub const fn previous(self) -> Month

Returns the previous month.

source

pub const fn previous_nth(self, nth: usize) -> Month

Returns the previous nth month.

source

pub const fn next(self) -> Month

Returns the next month.

source

pub const fn next_nth(self, nth: usize) -> Month

Returns the next nth month.

source

pub const fn number(self) -> u8

Returns the Month number from January=1 to December=12.

source

pub const fn index(self) -> usize

Returns the Month index from January=0 to December=11.

source

pub const fn from_number(n: u8) -> Result<Month, &'static str>

Returns a Month from its counting number, from January=1 to December=12.

§Errors

if n < 1 || n > 12

source

pub const fn from_index(index: usize) -> Result<Month, &'static str>

Returns a Month from its index, from January=0 to December=11.

§Errors

if index > 11

source

pub const fn from_index_unchecked(index: usize) -> Self

Returns a Month from its index, from January=0 to December=11.

§Panics

if index > 11

source§

impl Month

§abbreviations & representations

source

pub const fn abbr3(self) -> &'static str

Returns the 3-letter abbreviated month name, in ASCII, UpperCamelCase.

source

pub const Jan: Month = Month::January

source

pub const Feb: Month = Month::February

source

pub const Mar: Month = Month::March

source

pub const Apr: Month = Month::April

source

pub const May: Month = Month::May

source

pub const Jun: Month = Month::June

source

pub const Jul: Month = Month::July

source

pub const Aug: Month = Month::August

source

pub const Sep: Month = Month::September

source

pub const Oct: Month = Month::October

source

pub const Nov: Month = Month::November

source

pub const Dec: Month = Month::December

source

pub const fn abbr2(self) -> &'static str

Returns the 2-letter abbreviated month name, in ASCII, UPPERCASE.

source

pub const JA: Month = Month::January

source

pub const FE: Month = Month::February

source

pub const MR: Month = Month::March

source

pub const AP: Month = Month::April

source

pub const MY: Month = Month::May

source

pub const JN: Month = Month::June

source

pub const JL: Month = Month::July

source

pub const AU: Month = Month::August

source

pub const SE: Month = Month::September

source

pub const OC: Month = Month::October

source

pub const NV: Month = Month::November

source

pub const DE: Month = Month::December

source

pub const fn abbr1(self) -> &'static str

Returns the 1-letter abbreviated month name, in ASCII, UPPERCASE.

source

pub const J: Month = Month::January

source

pub const F: Month = Month::February

source

pub const R: Month = Month::March

source

pub const P: Month = Month::April

source

pub const Y: Month = Month::May

source

pub const N: Month = Month::June

source

pub const L: Month = Month::July

source

pub const U: Month = Month::August

source

pub const S: Month = Month::September

source

pub const O: Month = Month::October

source

pub const V: Month = Month::November

source

pub const D: Month = Month::December

source

pub const fn emoji(self) -> char

Returns an emoji associated to each month.

These are: 🌺, 🐉, 🍀, 🐰, 🌼, 🐟, 🌞, 🍂, 🎃, 🦉, 🍁, 🎄.

Hibiscus, Dragon, Four Leaf Clover, Rabbit, Blossom, Fish, Sun with Face, Fallen Leaf, Jack-O-Lantern, Owl, Maple Leaf and Christmas Tree.

source

pub const fn zodiac_start(self) -> char

Returns the main zodiac symbol, associated to the start of the month.

These are: ♑, ♒, ♓, ♈, ♉, ♊, ♋, ♌, ♍, ♎, ♏, ♐.

Capricorn, Aquarius, Pisces, Aries, Taurus, Gemini, Cancer, Leo, Virgo, Libra, Scorpio, Sagittarius.

§Examples
assert_eq![Month::July.zodiac_start(), '♋'];
source

pub const fn zodiac_start_name(self) -> &'static str

Returns the main zodiac name, associated to the start of the month.

These are: Capricorn, Aquarius, Pisces, Aries, Taurus, Gemini, Cancer, Leo, Virgo, Libra, Scorpio, Sagittarius.

§Examples
assert_eq![Month::July.zodiac_start_name(), "Cancer"];
source

pub const fn zodiac_end(self) -> char

Returns the secondary zodiac symbol, associated to the end of the month.

These are: ♒, ♓, ♈, ♉, ♊, ♋, ♌, ♍, ♎, ♏, ♐, ♑.

§Examples
assert_eq![Month::July.zodiac_end(), '♌'];
source

pub const fn zodiac_end_name(self) -> &'static str

Returns the secondary zodiac name, associated to the end of the month.

These are: Aquarius, Pisces, Aries, Taurus, Gemini, Cancer, Leo, Virgo, Libra, Scorpio, Sagittarius, Capricorn.

§Examples
assert_eq![Month::July.zodiac_end_name(), "Leo"];

Trait Implementations§

source§

impl Clone for Month

source§

fn clone(&self) -> Month

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Month

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Month

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Month> for u8

source§

fn from(month: Month) -> Self

Converts to this type from the input type.
source§

impl FromStr for Month

Returns a Month from a string containing either the full month name, or any of the month ASCII abbreviations.

§

type Err = &'static str

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Month, Self::Err>

Parses a string s to return a value of this type. Read more
source§

impl Hash for Month

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

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

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for Month

source§

fn cmp(&self, other: &Month) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for Month

source§

fn eq(&self, other: &Month) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for Month

source§

fn partial_cmp(&self, other: &Month) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Copy for Month

source§

impl Eq for Month

source§

impl StructuralPartialEq for Month

Auto Trait Implementations§

§

impl Freeze for Month

§

impl RefUnwindSafe for Month

§

impl Send for Month

§

impl Sync for Month

§

impl Unpin for Month

§

impl UnwindSafe for Month

Blanket Implementations§

source§

impl<T> Also for T

source§

fn also_mut<F: FnOnce(&mut Self)>(self, f: F) -> Self

Applies a function which takes the parameter by exclusive reference, and then returns the (possibly) modified owned value. Read more
source§

fn also_ref<F: FnOnce(&Self)>(self, f: F) -> Self

Applies a function which takes the parameter by shared reference, and then returns the (possibly) modified owned value. Read more
source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T, Res> Apply<Res> for T
where T: ?Sized,

source§

fn apply<F: FnOnce(Self) -> Res>(self, f: F) -> Res
where Self: Sized,

Apply a function which takes the parameter by value.
source§

fn apply_ref<F: FnOnce(&Self) -> Res>(&self, f: F) -> Res

Apply a function which takes the parameter by shared reference.
source§

fn apply_mut<F: FnOnce(&mut Self) -> Res>(&mut self, f: F) -> Res

Apply a function which takes the parameter by exclusive reference.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> ByteSized for T

source§

const BYTE_ALIGN: usize = _

The alignment of this type in bytes.
source§

const BYTE_SIZE: usize = _

The size of this type in bytes.
source§

const PTR_BYTES: usize = 4usize

The size of a pointer in bytes, for the current platform.
source§

const PTR_BITS: usize = 32usize

The size of a pointer in bits, for the current platform.
source§

const LITTLE_ENDIAN: bool = true

True if the system’s architecture is little-endian.
source§

const BIG_ENDIAN: bool = false

True if the system’s architecture is big-endian.
source§

fn byte_align(&self) -> usize

Returns the alignment of this type in bytes.
source§

fn byte_size(&self) -> usize

Returns the size of this type in bytes. Read more
source§

fn ptr_size_ratio(&self) -> [usize; 2]

Returns the size ratio between PTR_BYTES and BYTE_SIZE. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> CloneToUninit for T
where T: Copy,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> ExtAny for T
where T: Any + ?Sized,

source§

fn type_of(&self) -> TypeId

Returns the TypeId of self. Read more
source§

fn type_name(&self) -> &'static str

Returns the type name of self. Read more
source§

fn type_is<T: 'static>(&self) -> bool

Returns true if Self is of type T. Read more
source§

fn as_any_ref(&self) -> &dyn Any
where Self: Sized,

Upcasts &self as &dyn Any. Read more
source§

fn as_any_mut(&mut self) -> &mut dyn Any
where Self: Sized,

Upcasts &mut self as &mut dyn Any. Read more
source§

fn as_any_box(self: Box<Self>) -> Box<dyn Any>
where Self: Sized,

Upcasts Box<self> as Box<dyn Any>. Read more
source§

fn downcast_ref<T: 'static>(&self) -> Option<&T>

Available on crate feature unsafe_dyn only.
Returns some shared reference to the inner value if it is of type T. Read more
source§

fn downcast_mut<T: 'static>(&mut self) -> Option<&mut T>

Available on crate feature unsafe_dyn only.
Returns some exclusive reference to the inner value if it is of type T. Read more
source§

impl<T> ExtMem for T
where T: ?Sized,

source§

const NEEDS_DROP: bool = _

Know whether dropping values of this type matters, in compile-time.
source§

fn mem_needs_drop(&self) -> bool

Returns true if dropping values of this type matters. Read more
source§

fn mem_drop(self)
where Self: Sized,

Drops self by running its destructor. Read more
source§

fn mem_forget(self)
where Self: Sized,

Forgets about self without running its destructor. Read more
source§

fn mem_replace(&mut self, other: Self) -> Self
where Self: Sized,

Replaces self with other, returning the previous value of self. Read more
source§

fn mem_take(&mut self) -> Self
where Self: Default,

Replaces self with its default value, returning the previous value of self. Read more
source§

fn mem_swap(&mut self, other: &mut Self)
where Self: Sized,

Swaps the value of self and other without deinitializing either one. Read more
source§

fn mem_as_bytes(&self) -> &[u8]
where Self: Sync + Unpin,

Available on crate feature unsafe_slice only.
View a Sync + Unpin self as &[u8]. Read more
source§

fn mem_as_bytes_mut(&mut self) -> &mut [u8]
where Self: Sync + Unpin,

Available on crate feature unsafe_slice only.
View a Sync + Unpin self as &mut [u8].
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.