Enum icu_datetime::fields::Day
source · #[repr(u8)]pub enum Day {
DayOfMonth = 0,
DayOfYear = 1,
DayOfWeekInMonth = 2,
}
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.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Day
impl<'de> Deserialize<'de> for Day
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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
source§impl<'a> Yokeable<'a> for Daywhere
Self: Sized,
impl<'a> Yokeable<'a> for Daywhere
Self: Sized,
source§fn transform_owned(self) -> Self::Output
fn transform_owned(self) -> Self::Output
source§unsafe fn make(this: Self::Output) -> Self
unsafe fn make(this: Self::Output) -> Self
Self<'a>
’s lifetime. Read moresource§fn transform_mut<F>(&'a mut self, f: F)where
F: 'static + for<'b> FnOnce(&'b mut Self::Output),
fn transform_mut<F>(&'a mut self, f: F)where
F: 'static + for<'b> FnOnce(&'b mut Self::Output),
self
between &'a mut Self<'static>
and &'a mut Self<'a>
,
and pass it to f
. Read moresource§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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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