pub enum MonthError {
InvalidMonth,
}Variants§
InvalidMonth
Trait Implementations§
Source§impl Clone for MonthError
impl Clone for MonthError
Source§fn clone(&self) -> MonthError
fn clone(&self) -> MonthError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MonthError
impl Debug for MonthError
Source§impl PartialEq for MonthError
impl PartialEq for MonthError
Source§fn eq(&self, other: &MonthError) -> bool
fn eq(&self, other: &MonthError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MonthError
impl Eq for MonthError
impl StructuralPartialEq for MonthError
Auto Trait Implementations§
impl Freeze for MonthError
impl RefUnwindSafe for MonthError
impl Send for MonthError
impl Sync for MonthError
impl Unpin for MonthError
impl UnsafeUnpin for MonthError
impl UnwindSafe for MonthError
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