#[non_exhaustive]pub enum AuthorizationClass {
Read,
Lifecycle,
Destructive,
}Expand description
The separately authorizable class of a service call.
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.
Read
Every explorer query and every retention plan.
Lifecycle
Launch, restart, and stop.
Destructive
Abandon, recover, hold, hold release, and purge application.
Implementations§
Trait Implementations§
Source§impl Clone for AuthorizationClass
impl Clone for AuthorizationClass
Source§fn clone(&self) -> AuthorizationClass
fn clone(&self) -> AuthorizationClass
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 AuthorizationClass
Source§impl Debug for AuthorizationClass
impl Debug for AuthorizationClass
Source§impl Display for AuthorizationClass
impl Display for AuthorizationClass
impl Eq for AuthorizationClass
Source§impl Hash for AuthorizationClass
impl Hash for AuthorizationClass
Source§impl Ord for AuthorizationClass
impl Ord for AuthorizationClass
Source§fn cmp(&self, other: &AuthorizationClass) -> Ordering
fn cmp(&self, other: &AuthorizationClass) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AuthorizationClass
impl PartialEq for AuthorizationClass
Source§impl PartialOrd for AuthorizationClass
impl PartialOrd for AuthorizationClass
impl StructuralPartialEq for AuthorizationClass
Auto Trait Implementations§
impl Freeze for AuthorizationClass
impl RefUnwindSafe for AuthorizationClass
impl Send for AuthorizationClass
impl Sync for AuthorizationClass
impl Unpin for AuthorizationClass
impl UnsafeUnpin for AuthorizationClass
impl UnwindSafe for AuthorizationClass
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