pub enum RulesetLookupError {
UnknownRulesetId(String),
}Variants§
Trait Implementations§
Source§impl Clone for RulesetLookupError
impl Clone for RulesetLookupError
Source§fn clone(&self) -> RulesetLookupError
fn clone(&self) -> RulesetLookupError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RulesetLookupError
impl Debug for RulesetLookupError
Source§impl Display for RulesetLookupError
impl Display for RulesetLookupError
Source§impl Error for RulesetLookupError
impl Error for RulesetLookupError
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 PartialEq for RulesetLookupError
impl PartialEq for RulesetLookupError
impl Eq for RulesetLookupError
impl StructuralPartialEq for RulesetLookupError
Auto Trait Implementations§
impl Freeze for RulesetLookupError
impl RefUnwindSafe for RulesetLookupError
impl Send for RulesetLookupError
impl Sync for RulesetLookupError
impl Unpin for RulesetLookupError
impl UnsafeUnpin for RulesetLookupError
impl UnwindSafe for RulesetLookupError
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