Enum icu_datetime::fields::Day
source · #[repr(u8)]pub enum Day {
DayOfMonth = 0,
DayOfYear = 1,
DayOfWeekInMonth = 2,
ModifiedJulianDay = 3,
}
Expand description
An enum for the possible symbols of a day field in a date pattern.
Variants§
DayOfMonth = 0
Field symbol for day of month (numeric).
This field symbol is represented by the character d
in a date formatting pattern string.
For more details, see documentation on date field symbols.
DayOfYear = 1
Field symbol for day of year (numeric).
This field symbol is represented by the character D
in a date formatting pattern string.
For more details, see documentation on date field symbols.
DayOfWeekInMonth = 2
Field symbol for the day of week occurrence relative to the month (numeric).
For the example "2nd Wed in July"
, this field would provide "2"
. Should likely be paired with the Weekday
field.
This field symbol is represented by the character F
in a date formatting pattern string.
For more details, see documentation on date field symbols.
ModifiedJulianDay = 3
Field symbol for the modified Julian day (numeric).
The value of this field differs from the conventional Julian day number in a couple of ways, which are based on measuring relative to the local time zone.
This field symbol is represented by the character g
in a date formatting pattern string.
For more details, see documentation on date field symbols.
Implementations§
source§impl Day
impl Day
sourcepub(crate) fn new_from_u8(value: u8) -> Option<Self>
pub(crate) fn new_from_u8(value: u8) -> Option<Self>
Attempt to construct the value from its corresponding integer,
returning None
if not possible
Trait Implementations§
source§impl From<Day> for FieldSymbol
impl From<Day> for FieldSymbol
source§impl Ord for Day
impl Ord for Day
source§impl PartialOrd for Day
impl PartialOrd for Day
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl<'a> Yokeable<'a> for Daywhere
Self: Sized,
impl<'a> Yokeable<'a> for Daywhere
Self: Sized,
source§impl<'a> ZeroMapKV<'a> for Day
impl<'a> ZeroMapKV<'a> for Day
impl Copy for Day
impl Eq for Day
impl StructuralPartialEq for Day
Auto Trait Implementations§
impl Freeze for Day
impl RefUnwindSafe for Day
impl Send for Day
impl Sync for Day
impl Unpin for Day
impl UnwindSafe for Day
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more