pub enum CertificationStatus {
NotCertified,
Pending,
Certified,
Expired,
}Expand description
Certification status.
Variants§
NotCertified
Not certified
Pending
Certification pending
Certified
Certified
Expired
Certification expired
Trait Implementations§
Source§impl Clone for CertificationStatus
impl Clone for CertificationStatus
Source§fn clone(&self) -> CertificationStatus
fn clone(&self) -> CertificationStatus
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 CertificationStatus
impl Debug for CertificationStatus
Source§impl Default for CertificationStatus
impl Default for CertificationStatus
Source§fn default() -> CertificationStatus
fn default() -> CertificationStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CertificationStatus
impl<'de> Deserialize<'de> for CertificationStatus
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 CertificationStatus
impl Hash for CertificationStatus
Source§impl PartialEq for CertificationStatus
impl PartialEq for CertificationStatus
Source§impl Serialize for CertificationStatus
impl Serialize for CertificationStatus
impl Copy for CertificationStatus
impl Eq for CertificationStatus
impl StructuralPartialEq for CertificationStatus
Auto Trait Implementations§
impl Freeze for CertificationStatus
impl RefUnwindSafe for CertificationStatus
impl Send for CertificationStatus
impl Sync for CertificationStatus
impl Unpin for CertificationStatus
impl UnwindSafe for CertificationStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.