pub enum ItemUseResult {
Default,
ShotgunRacked(ShotgunRackResult),
LearnedShell(LearnedShell),
StunnedPlayer(PlayerNumber),
}
Variants§
Trait Implementations§
Source§impl Clone for ItemUseResult
impl Clone for ItemUseResult
Source§fn clone(&self) -> ItemUseResult
fn clone(&self) -> ItemUseResult
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 ItemUseResult
impl Debug for ItemUseResult
Source§impl PartialEq for ItemUseResult
impl PartialEq for ItemUseResult
impl StructuralPartialEq for ItemUseResult
Auto Trait Implementations§
impl Freeze for ItemUseResult
impl RefUnwindSafe for ItemUseResult
impl Send for ItemUseResult
impl Sync for ItemUseResult
impl Unpin for ItemUseResult
impl UnwindSafe for ItemUseResult
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