#[non_exhaustive]pub enum AuthAccessType {
Read,
Write,
}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.
Implementations§
Trait Implementations§
Source§impl AsRef<str> for AuthAccessType
impl AsRef<str> for AuthAccessType
Source§impl Clone for AuthAccessType
impl Clone for AuthAccessType
Source§fn clone(&self) -> AuthAccessType
fn clone(&self) -> AuthAccessType
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 AuthAccessType
Source§impl Debug for AuthAccessType
impl Debug for AuthAccessType
Source§impl Display for AuthAccessType
impl Display for AuthAccessType
impl Eq for AuthAccessType
Source§impl PartialEq for AuthAccessType
impl PartialEq for AuthAccessType
Source§fn eq(&self, other: &AuthAccessType) -> bool
fn eq(&self, other: &AuthAccessType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AuthAccessType
Auto Trait Implementations§
impl Freeze for AuthAccessType
impl RefUnwindSafe for AuthAccessType
impl Send for AuthAccessType
impl Sync for AuthAccessType
impl Unpin for AuthAccessType
impl UnsafeUnpin for AuthAccessType
impl UnwindSafe for AuthAccessType
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