pub struct ApplicationAccount {
pub name: String,
pub bank: String,
pub account_holder_name: String,
pub routing_number: String,
pub account_number: String,
}Expand description
Models a bank account associated with an application.
Fields§
§name: StringThe name of the bank account.
bank: StringThe name of the bank.
account_holder_name: StringThe name of the account holder.
routing_number: StringThe routing number of the bank.
account_number: StringThe account number.
Trait Implementations§
Source§impl Clone for ApplicationAccount
impl Clone for ApplicationAccount
Source§fn clone(&self) -> ApplicationAccount
fn clone(&self) -> ApplicationAccount
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 ApplicationAccount
impl Debug for ApplicationAccount
Source§impl Default for ApplicationAccount
impl Default for ApplicationAccount
Source§fn default() -> ApplicationAccount
fn default() -> ApplicationAccount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApplicationAccount
impl<'de> Deserialize<'de> for ApplicationAccount
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
Auto Trait Implementations§
impl Freeze for ApplicationAccount
impl RefUnwindSafe for ApplicationAccount
impl Send for ApplicationAccount
impl Sync for ApplicationAccount
impl Unpin for ApplicationAccount
impl UnsafeUnpin for ApplicationAccount
impl UnwindSafe for ApplicationAccount
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