pub enum WPointKind {
Holding = 1,
Held = 2,
Dropping = 3,
}Expand description
Whether this describes holding a weapon, held as one, or dropping one.
Variants§
Holding = 1
Indicates the information when holding a weapon.
Held = 2
Indicates the coordinates when held as a weapon.
Dropping = 3
Indicates a held weapon should be dropped.
Trait Implementations§
Source§impl Clone for WPointKind
impl Clone for WPointKind
Source§fn clone(&self) -> WPointKind
fn clone(&self) -> WPointKind
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 WPointKind
impl Debug for WPointKind
Source§impl Default for WPointKind
impl Default for WPointKind
Source§impl FromStr for WPointKind
impl FromStr for WPointKind
Source§type Err = WPointKindParseError
type Err = WPointKindParseError
The associated error which can be returned from parsing.
Source§fn from_str(s: &str) -> Result<WPointKind, WPointKindParseError>
fn from_str(s: &str) -> Result<WPointKind, WPointKindParseError>
Parses a string
s to return a value of this type. Read moreSource§impl PartialEq for WPointKind
impl PartialEq for WPointKind
impl Copy for WPointKind
impl Eq for WPointKind
impl StructuralPartialEq for WPointKind
Auto Trait Implementations§
impl Freeze for WPointKind
impl RefUnwindSafe for WPointKind
impl Send for WPointKind
impl Sync for WPointKind
impl Unpin for WPointKind
impl UnwindSafe for WPointKind
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