pub enum BankingCustomerType {
Retail,
Business,
Trust,
FinancialInstitution,
Government,
NonProfit,
}Expand description
Type of banking customer.
Variants§
Retail
Individual retail customer
Business
Business/corporate customer
Trust
Trust or foundation
FinancialInstitution
Financial institution
Government
Government entity
NonProfit
Non-profit organization
Implementations§
Source§impl BankingCustomerType
impl BankingCustomerType
Sourcepub fn is_natural_person(&self) -> bool
pub fn is_natural_person(&self) -> bool
Returns whether this is a natural person (vs legal entity).
Sourcepub fn requires_enhanced_dd(&self) -> bool
pub fn requires_enhanced_dd(&self) -> bool
Returns whether enhanced due diligence is typically required.
Sourcepub fn requires_ubo_analysis(&self) -> bool
pub fn requires_ubo_analysis(&self) -> bool
Returns whether beneficial ownership analysis is required.
Trait Implementations§
Source§impl Clone for BankingCustomerType
impl Clone for BankingCustomerType
Source§fn clone(&self) -> BankingCustomerType
fn clone(&self) -> BankingCustomerType
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 BankingCustomerType
impl Debug for BankingCustomerType
Source§impl Default for BankingCustomerType
impl Default for BankingCustomerType
Source§fn default() -> BankingCustomerType
fn default() -> BankingCustomerType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BankingCustomerType
impl<'de> Deserialize<'de> for BankingCustomerType
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<BankingCustomerType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<BankingCustomerType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for BankingCustomerType
impl Hash for BankingCustomerType
Source§impl PartialEq for BankingCustomerType
impl PartialEq for BankingCustomerType
Source§impl Serialize for BankingCustomerType
impl Serialize for BankingCustomerType
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for BankingCustomerType
impl Eq for BankingCustomerType
impl StructuralPartialEq for BankingCustomerType
Auto Trait Implementations§
impl Freeze for BankingCustomerType
impl RefUnwindSafe for BankingCustomerType
impl Send for BankingCustomerType
impl Sync for BankingCustomerType
impl Unpin for BankingCustomerType
impl UnwindSafe for BankingCustomerType
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,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.