pub struct SkillError {
pub dir: PathBuf,
pub why: String,
}Expand description
A skill directory that would not load, kept so startup can say so.
A skill that silently fails to load looks exactly like a skill the model chose not to use, which is the shape of the unrouted-domain warning and is reported for the same reason.
Fields§
§dir: PathBuf§why: StringTrait Implementations§
Source§impl Clone for SkillError
impl Clone for SkillError
Source§fn clone(&self) -> SkillError
fn clone(&self) -> SkillError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SkillError
impl RefUnwindSafe for SkillError
impl Send for SkillError
impl Sync for SkillError
impl Unpin for SkillError
impl UnsafeUnpin for SkillError
impl UnwindSafe for SkillError
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