#[repr(u8)]
pub enum Year {
Calendar,
WeekOf,
}
Expand description
An enum for the possible symbols of a year field in a date pattern.
Variants
Calendar
Field symbol for calendar year (numeric).
In most cases the length of this field specifies the minimum number of digits to display, zero-padded as necessary. For most use cases, Year::Calendar
or Year::WeekOf
should be adequate.
This field symbol is represented by the character y
in a date formatting pattern string.
For more details, see documentation on date field symbols.
WeekOf
Field symbol for year in “week of year”.
This works for “week of year” based calendars in which the year transition occurs on a week boundary; may differ from calendar year Year::Calendar
near a year transition. This numeric year designation is used in conjunction with Week::WeekOfYear
, but can be used in non-Gregorian based calendar systems where week date processing is desired. The field length is interpreted in the same way as for Year::Calendar
.
This field symbol is represented by the character Y
in a date formatting pattern string.
For more details, see documentation on date field symbols.
Trait Implementations
sourceimpl Bake for Year
impl Bake for Year
sourcefn bake(&self, env: &CrateEnv) -> TokenStream
fn bake(&self, env: &CrateEnv) -> TokenStream
Returns a TokenStream
that would evaluate to self
. Read more
sourceimpl<'de> Deserialize<'de> for Year
impl<'de> Deserialize<'de> for Year
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<Year, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Year, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<Year> for FieldSymbol
impl From<Year> for FieldSymbol
sourcefn from(input: Year) -> FieldSymbol
fn from(input: Year) -> FieldSymbol
Converts to this type from the input type.
sourceimpl Ord for Year
impl Ord for Year
sourceimpl PartialOrd<Year> for Year
impl PartialOrd<Year> for Year
sourcefn partial_cmp(&self, other: &Year) -> Option<Ordering>
fn partial_cmp(&self, other: &Year) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn 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
sourceimpl Serialize for Year
impl Serialize for Year
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
sourceimpl<'a> Yokeable<'a> for Year
impl<'a> Yokeable<'a> for Year
sourcefn transform(&self) -> &<Year as Yokeable<'a>>::Output
fn transform(&self) -> &<Year as Yokeable<'a>>::Output
This method must cast self
between &'a Self<'static>
and &'a Self<'a>
. Read more
sourcefn transform_owned(self) -> <Year as Yokeable<'a>>::Output
fn transform_owned(self) -> <Year as Yokeable<'a>>::Output
This method must cast self
between Self<'static>
and Self<'a>
. Read more
sourceimpl<'a> ZeroMapKV<'a> for Year
impl<'a> ZeroMapKV<'a> for Year
impl Copy for Year
impl Eq for Year
impl<'a> IsCovariant<'a> for Year
impl StructuralEq for Year
impl StructuralPartialEq for Year
Auto Trait Implementations
impl RefUnwindSafe for Year
impl Send for Year
impl Sync for Year
impl Unpin for Year
impl UnwindSafe for Year
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Serialize for T where
T: Serialize + ?Sized,
impl<T> Serialize for T where
T: Serialize + ?Sized,
fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more