pub struct SkillHandler {
pub registry: Mutex<SkillRegistry>,
pub skill_dirs: Vec<PathBuf>,
}Expand description
Skill registry owner.
Fields§
§registry: Mutex<SkillRegistry>The skill registry (Mutex for interior-mutability from dispatch_load_skill).
skill_dirs: Vec<PathBuf>Skill directories to search (local first, then packages).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for SkillHandler
impl !RefUnwindSafe for SkillHandler
impl Send for SkillHandler
impl Sync for SkillHandler
impl Unpin for SkillHandler
impl UnsafeUnpin for SkillHandler
impl !UnwindSafe for SkillHandler
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