pub struct MonthLong { /* private fields */ }Available on crate features
formatting or parsing only.Expand description
Month of the year using the long form of the month name (e.g. “January”).
Implementations§
Source§impl MonthLong
impl MonthLong
Sourcepub const fn default() -> Self
pub const fn default() -> Self
This function exists since Default::default() cannot be used in a const context.
It may be removed once that becomes possible. As the Default trait is in the
prelude, removing this function in the future will not cause any resolution failures for
the overwhelming majority of users; only users who use #![no_implicit_prelude] will be
affected. As such it will not be considered a breaking change.
Trait Implementations§
impl Copy for MonthLong
impl Eq for MonthLong
impl StructuralPartialEq for MonthLong
Auto Trait Implementations§
impl Freeze for MonthLong
impl RefUnwindSafe for MonthLong
impl Send for MonthLong
impl Sync for MonthLong
impl Unpin for MonthLong
impl UnsafeUnpin for MonthLong
impl UnwindSafe for MonthLong
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
Mutably borrows from an owned value. Read more