#[non_exhaustive]pub enum InsertPushRuleError {
ServerDefaultRuleId,
InvalidRuleId,
RelativeToServerDefaultRule,
UnknownRuleId,
BeforeHigherThanAfter,
}Expand description
The error type returned when trying to insert a user-defined push rule into a Ruleset.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ServerDefaultRuleId
The rule ID starts with a dot (.), which is reserved for server-default rules.
InvalidRuleId
The rule ID contains an invalid character.
RelativeToServerDefaultRule
The rule is being placed relative to a server-default rule, which is forbidden.
UnknownRuleId
The before or after rule could not be found.
BeforeHigherThanAfter
before has a higher priority than after.
Trait Implementations§
Source§impl Debug for InsertPushRuleError
impl Debug for InsertPushRuleError
Source§impl Display for InsertPushRuleError
impl Display for InsertPushRuleError
Source§impl Error for InsertPushRuleError
impl Error for InsertPushRuleError
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 InsertPushRuleError
impl RefUnwindSafe for InsertPushRuleError
impl Send for InsertPushRuleError
impl Sync for InsertPushRuleError
impl Unpin for InsertPushRuleError
impl UnwindSafe for InsertPushRuleError
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