#[non_exhaustive]pub enum AccountField {
Iban,
Number,
Bic,
BankCode,
Currency,
Name,
DisplayName,
OwnerName,
ProductName,
Status,
Type,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Implementations§
Source§impl AccountField
impl AccountField
pub const IBAN: Field<AccountField, Option<String>>
pub const NUMBER: Field<AccountField, Option<String>>
pub const BIC: Field<AccountField, Option<String>>
pub const BANK_CODE: Field<AccountField, Option<String>>
pub const CURRENCY: Field<AccountField, String>
pub const NAME: Field<AccountField, Option<String>>
pub const DISPLAY_NAME: Field<AccountField, Option<String>>
pub const OWNER_NAME: Field<AccountField, Option<String>>
pub const PRODUCT_NAME: Field<AccountField, Option<String>>
pub const STATUS: Field<AccountField, Option<AccountStatus>>
pub const TYPE: Field<AccountField, Option<AccountType>>
Trait Implementations§
Source§impl Clone for AccountField
impl Clone for AccountField
Source§fn clone(&self) -> AccountField
fn clone(&self) -> AccountField
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 AccountField
impl Debug for AccountField
Source§impl<'de> Deserialize<'de> for AccountField
impl<'de> Deserialize<'de> for AccountField
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 GetValue for AccountField
impl GetValue for AccountField
Source§impl PartialEq for AccountField
impl PartialEq for AccountField
Source§fn eq(&self, other: &AccountField) -> bool
fn eq(&self, other: &AccountField) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AccountField
impl Serialize for AccountField
impl Copy for AccountField
impl Eq for AccountField
impl StructuralPartialEq for AccountField
Auto Trait Implementations§
impl Freeze for AccountField
impl RefUnwindSafe for AccountField
impl Send for AccountField
impl Sync for AccountField
impl Unpin for AccountField
impl UnsafeUnpin for AccountField
impl UnwindSafe for AccountField
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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