pub struct RuleConfigNotFoundError {
pub config_name: String,
}
Expand description
Custom error type for when a specific rule configuration is not found.
Fields§
§config_name: String
Trait Implementations§
Source§impl Debug for RuleConfigNotFoundError
impl Debug for RuleConfigNotFoundError
Source§impl Display for RuleConfigNotFoundError
impl Display for RuleConfigNotFoundError
Source§impl Error for RuleConfigNotFoundError
impl Error for RuleConfigNotFoundError
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()
Auto Trait Implementations§
impl Freeze for RuleConfigNotFoundError
impl RefUnwindSafe for RuleConfigNotFoundError
impl Send for RuleConfigNotFoundError
impl Sync for RuleConfigNotFoundError
impl Unpin for RuleConfigNotFoundError
impl UnwindSafe for RuleConfigNotFoundError
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