#[repr(u8)]pub enum DocClassIssuerType {
Government = 0,
Educational = 1,
Professional = 2,
Corporate = 3,
Healthcare = 4,
Legal = 5,
SelfSovereign = 6,
}Expand description
Types of DocClass issuers
Variants§
Government = 0
Government agency (for 80X credentials)
Educational = 1
Educational institution (for 81X credentials)
Professional = 2
Professional licensing body
Corporate = 3
Corporate entity
Healthcare = 4
Healthcare provider
Legal = 5
Legal entity
SelfSovereign = 6
Self-sovereign (for identity roots only)
Implementations§
Trait Implementations§
Source§impl Clone for DocClassIssuerType
impl Clone for DocClassIssuerType
Source§fn clone(&self) -> DocClassIssuerType
fn clone(&self) -> DocClassIssuerType
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 DocClassIssuerType
impl Debug for DocClassIssuerType
Source§impl<'de> Deserialize<'de> for DocClassIssuerType
impl<'de> Deserialize<'de> for DocClassIssuerType
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 PartialEq for DocClassIssuerType
impl PartialEq for DocClassIssuerType
Source§fn eq(&self, other: &DocClassIssuerType) -> bool
fn eq(&self, other: &DocClassIssuerType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DocClassIssuerType
impl Serialize for DocClassIssuerType
impl Copy for DocClassIssuerType
impl Eq for DocClassIssuerType
impl StructuralPartialEq for DocClassIssuerType
Auto Trait Implementations§
impl Freeze for DocClassIssuerType
impl RefUnwindSafe for DocClassIssuerType
impl Send for DocClassIssuerType
impl Sync for DocClassIssuerType
impl Unpin for DocClassIssuerType
impl UnsafeUnpin for DocClassIssuerType
impl UnwindSafe for DocClassIssuerType
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