pub struct InternationalWireRoutingInfo {
pub iban: String,
pub swift_code: String,
pub correspondent_info: Option<CorrespondentInfo>,
pub bank_details: Option<BankDetails>,
pub address: Option<Address>,
pub phone_number: Option<String>,
pub country_specific: Option<CountrySpecific>,
}
Fields§
§iban: String
§swift_code: String
§correspondent_info: Option<CorrespondentInfo>
§bank_details: Option<BankDetails>
§address: Option<Address>
§phone_number: Option<String>
§country_specific: Option<CountrySpecific>
Trait Implementations§
Source§impl Clone for InternationalWireRoutingInfo
impl Clone for InternationalWireRoutingInfo
Source§fn clone(&self) -> InternationalWireRoutingInfo
fn clone(&self) -> InternationalWireRoutingInfo
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 InternationalWireRoutingInfo
impl Debug for InternationalWireRoutingInfo
Source§impl<'de> Deserialize<'de> for InternationalWireRoutingInfo
impl<'de> Deserialize<'de> for InternationalWireRoutingInfo
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 InternationalWireRoutingInfo
impl PartialEq for InternationalWireRoutingInfo
Source§fn eq(&self, other: &InternationalWireRoutingInfo) -> bool
fn eq(&self, other: &InternationalWireRoutingInfo) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for InternationalWireRoutingInfo
Auto Trait Implementations§
impl Freeze for InternationalWireRoutingInfo
impl RefUnwindSafe for InternationalWireRoutingInfo
impl Send for InternationalWireRoutingInfo
impl Sync for InternationalWireRoutingInfo
impl Unpin for InternationalWireRoutingInfo
impl UnwindSafe for InternationalWireRoutingInfo
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