pub struct ElectronicRoutingInfo {
pub account_number: String,
pub routing_number: String,
pub bank_name: Option<String>,
pub electronic_account_type: ElectronicAccountType,
pub address: Option<Address>,
}
Fields§
§account_number: String
§routing_number: String
§bank_name: Option<String>
§electronic_account_type: ElectronicAccountType
§address: Option<Address>
Trait Implementations§
Source§impl Clone for ElectronicRoutingInfo
impl Clone for ElectronicRoutingInfo
Source§fn clone(&self) -> ElectronicRoutingInfo
fn clone(&self) -> ElectronicRoutingInfo
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 ElectronicRoutingInfo
impl Debug for ElectronicRoutingInfo
Source§impl<'de> Deserialize<'de> for ElectronicRoutingInfo
impl<'de> Deserialize<'de> for ElectronicRoutingInfo
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 ElectronicRoutingInfo
impl PartialEq for ElectronicRoutingInfo
Source§impl Serialize for ElectronicRoutingInfo
impl Serialize for ElectronicRoutingInfo
impl StructuralPartialEq for ElectronicRoutingInfo
Auto Trait Implementations§
impl Freeze for ElectronicRoutingInfo
impl RefUnwindSafe for ElectronicRoutingInfo
impl Send for ElectronicRoutingInfo
impl Sync for ElectronicRoutingInfo
impl Unpin for ElectronicRoutingInfo
impl UnwindSafe for ElectronicRoutingInfo
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