pub enum SkillError {
Io(String),
Invalid {
path: String,
reason: String,
},
NameRegex {
name: String,
reason: String,
},
DescriptionTooLong {
len: usize,
},
CompatibilityTooLong {
len: usize,
},
NameDirMismatch {
name: String,
dir: String,
},
MissingField {
field: String,
},
Duplicate {
name: String,
},
}Variants§
Io(String)
Invalid
NameRegex
DescriptionTooLong
CompatibilityTooLong
NameDirMismatch
MissingField
Duplicate
Trait Implementations§
Source§impl Debug for SkillError
impl Debug for SkillError
Source§impl Display for SkillError
impl Display for SkillError
Source§impl Error for SkillError
impl Error for SkillError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<SkillError> for HarnessError
impl From<SkillError> for HarnessError
Source§fn from(source: SkillError) -> HarnessError
fn from(source: SkillError) -> HarnessError
Converts to this type from the input type.
Auto 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