pub enum MarkdownlintError {
Config(String),
Io(Error),
InvalidGlob(String),
InvalidRegex(Error),
Parse(String),
Fix(String),
}Variants§
Trait Implementations§
Source§impl Debug for MarkdownlintError
impl Debug for MarkdownlintError
Source§impl Display for MarkdownlintError
impl Display for MarkdownlintError
Source§impl Error for MarkdownlintError
impl Error for MarkdownlintError
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<Error> for MarkdownlintError
impl From<Error> for MarkdownlintError
Auto Trait Implementations§
impl Freeze for MarkdownlintError
impl !RefUnwindSafe for MarkdownlintError
impl Send for MarkdownlintError
impl Sync for MarkdownlintError
impl Unpin for MarkdownlintError
impl UnsafeUnpin for MarkdownlintError
impl !UnwindSafe for MarkdownlintError
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