#[repr(u8)]pub enum FinanceProofType {
AddressInJurisdiction = 0,
AccountInGoodStanding = 1,
BalanceAtLeast = 2,
KycLevelAchieved = 3,
AmlRiskAcceptable = 4,
Combined = 255,
}Expand description
Proof profile types for finance domain
Variants§
AddressInJurisdiction = 0
Prove address in a jurisdiction
AccountInGoodStanding = 1
Prove bank account in good standing
BalanceAtLeast = 2
Prove balance at least in a bracket
KycLevelAchieved = 3
Prove KYC level achieved
AmlRiskAcceptable = 4
Prove AML risk acceptable
Combined = 255
Combined proof (multiple conditions)
Implementations§
Trait Implementations§
Source§impl Clone for FinanceProofType
impl Clone for FinanceProofType
Source§fn clone(&self) -> FinanceProofType
fn clone(&self) -> FinanceProofType
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 FinanceProofType
impl Debug for FinanceProofType
Source§impl<'de> Deserialize<'de> for FinanceProofType
impl<'de> Deserialize<'de> for FinanceProofType
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 FinanceProofType
impl PartialEq for FinanceProofType
Source§fn eq(&self, other: &FinanceProofType) -> bool
fn eq(&self, other: &FinanceProofType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FinanceProofType
impl Serialize for FinanceProofType
impl Eq for FinanceProofType
impl StructuralPartialEq for FinanceProofType
Auto Trait Implementations§
impl Freeze for FinanceProofType
impl RefUnwindSafe for FinanceProofType
impl Send for FinanceProofType
impl Sync for FinanceProofType
impl Unpin for FinanceProofType
impl UnsafeUnpin for FinanceProofType
impl UnwindSafe for FinanceProofType
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