pub struct FileSkillLoader { /* private fields */ }Expand description
Implementations§
Trait Implementations§
Source§impl SkillLoader for FileSkillLoader
impl SkillLoader for FileSkillLoader
Source§fn load<'life0, 'life1, 'async_trait>(
&'life0 self,
name: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Skill>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn load<'life0, 'life1, 'async_trait>(
&'life0 self,
name: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Skill>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Load a skill by name. Read more
Auto Trait Implementations§
impl Freeze for FileSkillLoader
impl RefUnwindSafe for FileSkillLoader
impl Send for FileSkillLoader
impl Sync for FileSkillLoader
impl Unpin for FileSkillLoader
impl UnwindSafe for FileSkillLoader
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