pub struct RecipientParam<'a> {
pub name: &'a str,
pub address: Address,
pub emails: Vec<&'a str>,
pub payment_method: RecipientPaymentMethod,
pub electronic_routing_info: ElectronicRoutingInfo,
pub domestic_wire_routing_info: DomesticWireRoutingInfo,
pub international_wire_routing_info: InternationalWireRoutingInfo,
}
Fields§
§name: &'a str
§address: Address
§emails: Vec<&'a str>
§payment_method: RecipientPaymentMethod
§electronic_routing_info: ElectronicRoutingInfo
§domestic_wire_routing_info: DomesticWireRoutingInfo
§international_wire_routing_info: InternationalWireRoutingInfo
Trait Implementations§
Source§impl<'a> Clone for RecipientParam<'a>
impl<'a> Clone for RecipientParam<'a>
Source§fn clone(&self) -> RecipientParam<'a>
fn clone(&self) -> RecipientParam<'a>
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<'a> Debug for RecipientParam<'a>
impl<'a> Debug for RecipientParam<'a>
Source§impl<'de: 'a, 'a> Deserialize<'de> for RecipientParam<'a>
impl<'de: 'a, 'a> Deserialize<'de> for RecipientParam<'a>
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<'a> PartialEq for RecipientParam<'a>
impl<'a> PartialEq for RecipientParam<'a>
Source§impl<'a> Serialize for RecipientParam<'a>
impl<'a> Serialize for RecipientParam<'a>
impl<'a> StructuralPartialEq for RecipientParam<'a>
Auto Trait Implementations§
impl<'a> Freeze for RecipientParam<'a>
impl<'a> RefUnwindSafe for RecipientParam<'a>
impl<'a> Send for RecipientParam<'a>
impl<'a> Sync for RecipientParam<'a>
impl<'a> Unpin for RecipientParam<'a>
impl<'a> UnwindSafe for RecipientParam<'a>
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