pub struct IssuingTransactionTreasury {
pub received_credit: Option<String>,
pub received_debit: Option<String>,
}
Fields§
§received_credit: Option<String>
The Treasury ReceivedCredit representing this Issuing transaction if it is a refund.
received_debit: Option<String>
The Treasury ReceivedDebit representing this Issuing transaction if it is a capture.
Trait Implementations§
Source§impl Clone for IssuingTransactionTreasury
impl Clone for IssuingTransactionTreasury
Source§fn clone(&self) -> IssuingTransactionTreasury
fn clone(&self) -> IssuingTransactionTreasury
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 IssuingTransactionTreasury
impl Debug for IssuingTransactionTreasury
Auto Trait Implementations§
impl Freeze for IssuingTransactionTreasury
impl RefUnwindSafe for IssuingTransactionTreasury
impl Send for IssuingTransactionTreasury
impl Sync for IssuingTransactionTreasury
impl Unpin for IssuingTransactionTreasury
impl UnwindSafe for IssuingTransactionTreasury
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