Enum glib::DateWeekday
source · #[non_exhaustive]
pub enum DateWeekday {
BadWeekday,
Monday,
Tuesday,
Wednesday,
Thursday,
Friday,
Saturday,
Sunday,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
source§impl Clone for DateWeekday
impl Clone for DateWeekday
source§fn clone(&self) -> DateWeekday
fn clone(&self) -> DateWeekday
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DateWeekday
impl Debug for DateWeekday
source§impl Display for DateWeekday
impl Display for DateWeekday
source§impl Hash for DateWeekday
impl Hash for DateWeekday
source§impl Ord for DateWeekday
impl Ord for DateWeekday
source§fn cmp(&self, other: &DateWeekday) -> Ordering
fn cmp(&self, other: &DateWeekday) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<DateWeekday> for DateWeekday
impl PartialEq<DateWeekday> for DateWeekday
source§fn eq(&self, other: &DateWeekday) -> bool
fn eq(&self, other: &DateWeekday) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<DateWeekday> for DateWeekday
impl PartialOrd<DateWeekday> for DateWeekday
source§fn partial_cmp(&self, other: &DateWeekday) -> Option<Ordering>
fn partial_cmp(&self, other: &DateWeekday) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more