pub enum ExcludeError {
InvalidRegex(Error),
}Expand description
Errors raised while expanding/compiling an exclude pattern.
Variants§
Trait Implementations§
Source§impl Debug for ExcludeError
impl Debug for ExcludeError
Source§impl Display for ExcludeError
impl Display for ExcludeError
Source§impl Error for ExcludeError
impl Error for ExcludeError
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 ExcludeError
impl RefUnwindSafe for ExcludeError
impl Send for ExcludeError
impl Sync for ExcludeError
impl Unpin for ExcludeError
impl UnsafeUnpin for ExcludeError
impl UnwindSafe for ExcludeError
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