pub enum CounterKind {
Letter(u8),
Number(u8),
}
Variants§
Trait Implementations§
Source§impl Clone for CounterKind
impl Clone for CounterKind
Source§fn clone(&self) -> CounterKind
fn clone(&self) -> CounterKind
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 CounterKind
impl Debug for CounterKind
Source§impl PartialEq for CounterKind
impl PartialEq for CounterKind
impl Copy for CounterKind
impl StructuralPartialEq for CounterKind
Auto Trait Implementations§
impl Freeze for CounterKind
impl RefUnwindSafe for CounterKind
impl Send for CounterKind
impl Sync for CounterKind
impl Unpin for CounterKind
impl UnwindSafe for CounterKind
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