#[repr(u8)]
pub enum Month {
Format,
StandAlone,
}
Expand description
An enum for the possible symbols of a month field in a date pattern.
Variants
Format
Field symbol for month number or name in a pattern that contains multiple fields.
This field symbol is represented by the character M
in a date formatting pattern string.
For more details, see documentation on date field symbols.
StandAlone
Field symbol for a “stand-alone” month number or name.
The stand-alone month name is used when the month is displayed by itself. This may differ from the standard form based on the language and context.
This field symbol is represented by the character L
in a date formatting pattern string.
For more details, see documentation on date field symbols.
Trait Implementations
sourceimpl Bake for Month
impl Bake for Month
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 Month
impl<'de> Deserialize<'de> for Month
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<Month, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Month, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<Month> for FieldSymbol
impl From<Month> for FieldSymbol
sourcefn from(input: Month) -> FieldSymbol
fn from(input: Month) -> FieldSymbol
Converts to this type from the input type.
sourceimpl Ord for Month
impl Ord for Month
sourceimpl PartialOrd<Month> for Month
impl PartialOrd<Month> for Month
sourcefn partial_cmp(&self, other: &Month) -> Option<Ordering>
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 · 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 Month
impl Serialize for Month
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 Month
impl<'a> Yokeable<'a> for Month
sourcefn transform(&self) -> &<Month as Yokeable<'a>>::Output
fn transform(&self) -> &<Month as Yokeable<'a>>::Output
This method must cast self
between &'a Self<'static>
and &'a Self<'a>
. Read more
sourcefn transform_owned(self) -> <Month as Yokeable<'a>>::Output
fn transform_owned(self) -> <Month as Yokeable<'a>>::Output
This method must cast self
between Self<'static>
and Self<'a>
. Read more
sourceimpl<'a> ZeroMapKV<'a> for Month
impl<'a> ZeroMapKV<'a> for Month
impl Copy for Month
impl Eq for Month
impl<'a> IsCovariant<'a> for Month
impl StructuralEq for Month
impl StructuralPartialEq for Month
Auto Trait Implementations
impl RefUnwindSafe for Month
impl Send for Month
impl Sync for Month
impl Unpin for Month
impl UnwindSafe for Month
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