pub enum ShotgunDamage {
Blank,
RegularShot(bool),
SawedShot(bool),
}
Variants§
Trait Implementations§
Source§impl Clone for ShotgunDamage
impl Clone for ShotgunDamage
Source§fn clone(&self) -> ShotgunDamage
fn clone(&self) -> ShotgunDamage
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 ShotgunDamage
impl Debug for ShotgunDamage
impl Copy for ShotgunDamage
Auto Trait Implementations§
impl Freeze for ShotgunDamage
impl RefUnwindSafe for ShotgunDamage
impl Send for ShotgunDamage
impl Sync for ShotgunDamage
impl Unpin for ShotgunDamage
impl UnwindSafe for ShotgunDamage
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