pub enum PokemonBoostableStat {
Attack,
Defense,
SpecialAttack,
SpecialDefense,
Speed,
Evasion,
Accuracy,
}Variants§
Trait Implementations§
Source§impl Clone for PokemonBoostableStat
impl Clone for PokemonBoostableStat
Source§fn clone(&self) -> PokemonBoostableStat
fn clone(&self) -> PokemonBoostableStat
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 PokemonBoostableStat
impl Debug for PokemonBoostableStat
Source§impl PartialEq for PokemonBoostableStat
impl PartialEq for PokemonBoostableStat
impl Copy for PokemonBoostableStat
impl StructuralPartialEq for PokemonBoostableStat
Auto Trait Implementations§
impl Freeze for PokemonBoostableStat
impl RefUnwindSafe for PokemonBoostableStat
impl Send for PokemonBoostableStat
impl Sync for PokemonBoostableStat
impl Unpin for PokemonBoostableStat
impl UnwindSafe for PokemonBoostableStat
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