pub enum SkillsError {
Io(Error),
FrontmatterParse(String),
InvalidImpact(String),
PathNotFound(PathBuf),
}Expand description
Errors that can occur during skills extraction
Variants§
Trait Implementations§
Source§impl Debug for SkillsError
impl Debug for SkillsError
Source§impl Display for SkillsError
impl Display for SkillsError
Source§impl Error for SkillsError
impl Error for SkillsError
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()
Auto Trait Implementations§
impl Freeze for SkillsError
impl !RefUnwindSafe for SkillsError
impl Send for SkillsError
impl Sync for SkillsError
impl Unpin for SkillsError
impl UnsafeUnpin for SkillsError
impl !UnwindSafe for SkillsError
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