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