pub struct CipherBankAccountModel {
pub bank_name: Option<String>,
pub name_on_account: Option<String>,
pub account_type: Option<String>,
pub account_number: Option<String>,
pub routing_number: Option<String>,
pub branch_number: Option<String>,
pub pin: Option<String>,
pub swift_code: Option<String>,
pub iban: Option<String>,
pub bank_contact_phone: Option<String>,
}Fields§
§bank_name: Option<String>§name_on_account: Option<String>§account_type: Option<String>§account_number: Option<String>§routing_number: Option<String>§branch_number: Option<String>§pin: Option<String>§swift_code: Option<String>§iban: Option<String>§bank_contact_phone: Option<String>Implementations§
Source§impl CipherBankAccountModel
impl CipherBankAccountModel
pub fn new() -> CipherBankAccountModel
Trait Implementations§
Source§impl Clone for CipherBankAccountModel
impl Clone for CipherBankAccountModel
Source§fn clone(&self) -> CipherBankAccountModel
fn clone(&self) -> CipherBankAccountModel
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 CipherBankAccountModel
impl Debug for CipherBankAccountModel
Source§impl Default for CipherBankAccountModel
impl Default for CipherBankAccountModel
Source§fn default() -> CipherBankAccountModel
fn default() -> CipherBankAccountModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CipherBankAccountModel
impl<'de> Deserialize<'de> for CipherBankAccountModel
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 CipherBankAccountModel
impl PartialEq for CipherBankAccountModel
Source§impl Serialize for CipherBankAccountModel
impl Serialize for CipherBankAccountModel
impl StructuralPartialEq for CipherBankAccountModel
Auto Trait Implementations§
impl Freeze for CipherBankAccountModel
impl RefUnwindSafe for CipherBankAccountModel
impl Send for CipherBankAccountModel
impl Sync for CipherBankAccountModel
impl Unpin for CipherBankAccountModel
impl UnsafeUnpin for CipherBankAccountModel
impl UnwindSafe for CipherBankAccountModel
Blanket Implementations§
§impl<T> AnySync for T
impl<T> AnySync for T
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