pub struct RegisteredSkill {
pub skill: Skill,
pub source: SkillSource,
}Expand description
A skill paired with its registration source.
Fields§
§skill: SkillThe skill definition.
source: SkillSourceHow this skill was registered.
Trait Implementations§
Source§impl Clone for RegisteredSkill
impl Clone for RegisteredSkill
Source§fn clone(&self) -> RegisteredSkill
fn clone(&self) -> RegisteredSkill
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 moreAuto Trait Implementations§
impl Freeze for RegisteredSkill
impl RefUnwindSafe for RegisteredSkill
impl Send for RegisteredSkill
impl Sync for RegisteredSkill
impl Unpin for RegisteredSkill
impl UnsafeUnpin for RegisteredSkill
impl UnwindSafe for RegisteredSkill
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