#[repr(u8)]pub enum ArchivedMonth {
January = 0,
February = 1,
March = 2,
April = 3,
May = 4,
June = 5,
July = 6,
August = 7,
September = 8,
October = 9,
November = 10,
December = 11,
}
Available on crate features
rkyv
or rkyv-16
or rkyv-32
or rkyv-64
only.Expand description
An archived Month
Variants§
January = 0
The archived counterpart of Month::January
February = 1
The archived counterpart of Month::February
March = 2
The archived counterpart of Month::March
April = 3
The archived counterpart of Month::April
May = 4
The archived counterpart of Month::May
June = 5
The archived counterpart of Month::June
July = 6
The archived counterpart of Month::July
August = 7
The archived counterpart of Month::August
September = 8
The archived counterpart of Month::September
October = 9
The archived counterpart of Month::October
November = 10
The archived counterpart of Month::November
December = 11
The archived counterpart of Month::December
Trait Implementations§
Source§impl Clone for ArchivedMonth
impl Clone for ArchivedMonth
Source§fn clone(&self) -> ArchivedMonth
fn clone(&self) -> ArchivedMonth
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ArchivedMonth
impl Debug for ArchivedMonth
Source§impl Hash for ArchivedMonth
impl Hash for ArchivedMonth
Source§impl Ord for ArchivedMonth
impl Ord for ArchivedMonth
Source§fn cmp(&self, other: &ArchivedMonth) -> Ordering
fn cmp(&self, other: &ArchivedMonth) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq<ArchivedMonth> for Month
impl PartialEq<ArchivedMonth> for Month
Source§impl PartialEq<Month> for ArchivedMonth
impl PartialEq<Month> for ArchivedMonth
Source§impl PartialEq for ArchivedMonth
impl PartialEq for ArchivedMonth
Source§impl PartialOrd<ArchivedMonth> for Month
impl PartialOrd<ArchivedMonth> for Month
Source§impl PartialOrd<Month> for ArchivedMonth
impl PartialOrd<Month> for ArchivedMonth
Source§impl PartialOrd for ArchivedMonth
impl PartialOrd for ArchivedMonth
impl Copy for ArchivedMonth
impl Eq for ArchivedMonth
impl StructuralPartialEq for ArchivedMonth
Auto Trait Implementations§
impl Freeze for ArchivedMonth
impl RefUnwindSafe for ArchivedMonth
impl Send for ArchivedMonth
impl Sync for ArchivedMonth
impl Unpin for ArchivedMonth
impl UnwindSafe for ArchivedMonth
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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