pub enum IdentityStatus {
Pending,
Active,
Suspended,
}Expand description
Status of an identity in the registration lifecycle
Variants§
Pending
Identity is awaiting activation/validation
Active
Identity is active and can be used
Suspended
Identity is suspended and cannot be used
Trait Implementations§
Source§impl Clone for IdentityStatus
impl Clone for IdentityStatus
Source§fn clone(&self) -> IdentityStatus
fn clone(&self) -> IdentityStatus
Returns a duplicate of the value. Read more
1.0.0 · 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 IdentityStatus
impl Debug for IdentityStatus
Source§impl<'de> Deserialize<'de> for IdentityStatus
impl<'de> Deserialize<'de> for IdentityStatus
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 Display for IdentityStatus
impl Display for IdentityStatus
Source§impl FromStr for IdentityStatus
impl FromStr for IdentityStatus
Source§impl PartialEq for IdentityStatus
impl PartialEq for IdentityStatus
Source§impl Serialize for IdentityStatus
impl Serialize for IdentityStatus
impl Copy for IdentityStatus
impl Eq for IdentityStatus
impl StructuralPartialEq for IdentityStatus
Auto Trait Implementations§
impl Freeze for IdentityStatus
impl RefUnwindSafe for IdentityStatus
impl Send for IdentityStatus
impl Sync for IdentityStatus
impl Unpin for IdentityStatus
impl UnsafeUnpin for IdentityStatus
impl UnwindSafe for IdentityStatus
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