pub struct IssuingAuthorizationTreasury {
pub received_credits: Vec<String>,
pub received_debits: Vec<String>,
pub transaction: Option<String>,
}
Fields§
§received_credits: Vec<String>
The array of ReceivedCredits associated with this authorization.
received_debits: Vec<String>
The array of ReceivedDebits associated with this authorization.
transaction: Option<String>
The Treasury Transaction associated with this authorization.
Trait Implementations§
Source§impl Clone for IssuingAuthorizationTreasury
impl Clone for IssuingAuthorizationTreasury
Source§fn clone(&self) -> IssuingAuthorizationTreasury
fn clone(&self) -> IssuingAuthorizationTreasury
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 IssuingAuthorizationTreasury
impl Debug for IssuingAuthorizationTreasury
Source§impl FromValueOpt for IssuingAuthorizationTreasury
impl FromValueOpt for IssuingAuthorizationTreasury
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for IssuingAuthorizationTreasury
impl RefUnwindSafe for IssuingAuthorizationTreasury
impl Send for IssuingAuthorizationTreasury
impl Sync for IssuingAuthorizationTreasury
impl Unpin for IssuingAuthorizationTreasury
impl UnwindSafe for IssuingAuthorizationTreasury
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