pub struct PaymentMetadata {
pub reference_number: Option<String>,
pub ppd_id: Option<String>,
pub payee: Option<String>,
pub by_order_of: Option<String>,
pub payer: Option<String>,
pub payment_method: Option<String>,
pub payment_processor: Option<String>,
pub reason: Option<String>,
}Fields§
§reference_number: Option<String>§ppd_id: Option<String>§payee: Option<String>§by_order_of: Option<String>§payer: Option<String>§payment_method: Option<String>§payment_processor: Option<String>§reason: Option<String>Trait Implementations§
Source§impl Clone for PaymentMetadata
impl Clone for PaymentMetadata
Source§fn clone(&self) -> PaymentMetadata
fn clone(&self) -> PaymentMetadata
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 PaymentMetadata
impl Debug for PaymentMetadata
Source§impl<'de> Deserialize<'de> for PaymentMetadata
impl<'de> Deserialize<'de> for PaymentMetadata
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 PaymentMetadata
impl RefUnwindSafe for PaymentMetadata
impl Send for PaymentMetadata
impl Sync for PaymentMetadata
impl Unpin for PaymentMetadata
impl UnwindSafe for PaymentMetadata
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