#[non_exhaustive]pub enum RejectionCode {
IdentityMismatch,
Unauthorized,
InvalidOperation,
BusinessRule,
Dependency,
SchemaIncompatible,
}Expand description
Stable machine-readable rejection categories.
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.
IdentityMismatch
Request identity did not match the authenticated context.
The actor is not allowed to perform the operation.
InvalidOperation
Wire shape or bounded-field validation failed.
BusinessRule
The application rejected the operation’s business semantics.
Dependency
The operation depends on an unavailable or rejected operation.
SchemaIncompatible
Operation schema is outside the application’s compatibility window.
Trait Implementations§
Source§impl Clone for RejectionCode
impl Clone for RejectionCode
Source§fn clone(&self) -> RejectionCode
fn clone(&self) -> RejectionCode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RejectionCode
Source§impl Debug for RejectionCode
impl Debug for RejectionCode
Source§impl<'de> Deserialize<'de> for RejectionCode
impl<'de> Deserialize<'de> for RejectionCode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RejectionCode
Source§impl PartialEq for RejectionCode
impl PartialEq for RejectionCode
Source§impl Serialize for RejectionCode
impl Serialize for RejectionCode
impl StructuralPartialEq for RejectionCode
Auto Trait Implementations§
impl Freeze for RejectionCode
impl RefUnwindSafe for RejectionCode
impl Send for RejectionCode
impl Sync for RejectionCode
impl Unpin for RejectionCode
impl UnsafeUnpin for RejectionCode
impl UnwindSafe for RejectionCode
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