pub enum SkillNature {
Spell,
Skill,
Unrecognized(i32),
}Variants§
Trait Implementations§
Source§impl Clone for SkillNature
impl Clone for SkillNature
Source§fn clone(&self) -> SkillNature
fn clone(&self) -> SkillNature
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 SkillNature
impl Debug for SkillNature
Source§impl Default for SkillNature
impl Default for SkillNature
Source§impl From<SkillNature> for i32
impl From<SkillNature> for i32
Source§fn from(value: SkillNature) -> i32
fn from(value: SkillNature) -> i32
Converts to this type from the input type.
Source§impl From<i32> for SkillNature
impl From<i32> for SkillNature
Source§impl PartialEq for SkillNature
impl PartialEq for SkillNature
impl Copy for SkillNature
impl Eq for SkillNature
impl StructuralPartialEq for SkillNature
Auto Trait Implementations§
impl Freeze for SkillNature
impl RefUnwindSafe for SkillNature
impl Send for SkillNature
impl Sync for SkillNature
impl Unpin for SkillNature
impl UnwindSafe for SkillNature
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