pub enum RuleParseError {
InvalidHost,
InvalidPath,
InconsistentPaths,
}
Variants§
Trait Implementations§
Source§impl Debug for RuleParseError
impl Debug for RuleParseError
Source§impl Display for RuleParseError
impl Display for RuleParseError
Source§impl Error for RuleParseError
impl Error for RuleParseError
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<RuleParseError> for RuleDecodeError
impl From<RuleParseError> for RuleDecodeError
Source§fn from(x: RuleParseError) -> Self
fn from(x: RuleParseError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RuleParseError
impl PartialEq for RuleParseError
impl Eq for RuleParseError
impl StructuralPartialEq for RuleParseError
Auto Trait Implementations§
impl Freeze for RuleParseError
impl RefUnwindSafe for RuleParseError
impl Send for RuleParseError
impl Sync for RuleParseError
impl Unpin for RuleParseError
impl UnwindSafe for RuleParseError
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