#[repr(u8)]pub enum ClaimTypeStatus {
Active = 0,
Deprecated = 1,
Retired = 2,
}Expand description
Claim type status in the registry
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ClaimTypeStatus
impl Clone for ClaimTypeStatus
Source§fn clone(&self) -> ClaimTypeStatus
fn clone(&self) -> ClaimTypeStatus
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 moreSource§impl Debug for ClaimTypeStatus
impl Debug for ClaimTypeStatus
Source§impl<'de> Deserialize<'de> for ClaimTypeStatus
impl<'de> Deserialize<'de> for ClaimTypeStatus
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
Source§impl Hash for ClaimTypeStatus
impl Hash for ClaimTypeStatus
Source§impl PartialEq for ClaimTypeStatus
impl PartialEq for ClaimTypeStatus
Source§fn eq(&self, other: &ClaimTypeStatus) -> bool
fn eq(&self, other: &ClaimTypeStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ClaimTypeStatus
impl Serialize for ClaimTypeStatus
impl Copy for ClaimTypeStatus
impl Eq for ClaimTypeStatus
impl StructuralPartialEq for ClaimTypeStatus
Auto Trait Implementations§
impl Freeze for ClaimTypeStatus
impl RefUnwindSafe for ClaimTypeStatus
impl Send for ClaimTypeStatus
impl Sync for ClaimTypeStatus
impl Unpin for ClaimTypeStatus
impl UnsafeUnpin for ClaimTypeStatus
impl UnwindSafe for ClaimTypeStatus
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