pub enum ChoicePeriod {
Current,
Date {
month: String,
year: u16,
},
}
Variants§
Trait Implementations§
Source§impl Clone for ChoicePeriod
impl Clone for ChoicePeriod
Source§fn clone(&self) -> ChoicePeriod
fn clone(&self) -> ChoicePeriod
Returns a duplicate 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 ChoicePeriod
impl Debug for ChoicePeriod
Source§impl ToString for ChoicePeriod
impl ToString for ChoicePeriod
Auto Trait Implementations§
impl Freeze for ChoicePeriod
impl RefUnwindSafe for ChoicePeriod
impl Send for ChoicePeriod
impl Sync for ChoicePeriod
impl Unpin for ChoicePeriod
impl UnwindSafe for ChoicePeriod
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