pub struct TransactionResponseDestination {
pub amount: Option<String>,
pub amount_usd: Option<String>,
pub aml_screening_result: Option<AmlScreeningResult>,
pub destination: Option<DestinationTransferPeerPathResponse>,
pub authorization_info: Option<AuthorizationInfo>,
}Fields§
§amount: Option<String>The amount to be sent to this destination.
amount_usd: Option<String>The USD value of the requested amount.
aml_screening_result: Option<AmlScreeningResult>§destination: Option<DestinationTransferPeerPathResponse>Implementations§
Trait Implementations§
Source§impl Clone for TransactionResponseDestination
impl Clone for TransactionResponseDestination
Source§fn clone(&self) -> TransactionResponseDestination
fn clone(&self) -> TransactionResponseDestination
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 Default for TransactionResponseDestination
impl Default for TransactionResponseDestination
Source§fn default() -> TransactionResponseDestination
fn default() -> TransactionResponseDestination
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransactionResponseDestination
impl<'de> Deserialize<'de> for TransactionResponseDestination
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 TransactionResponseDestination
impl PartialEq for TransactionResponseDestination
Source§fn eq(&self, other: &TransactionResponseDestination) -> bool
fn eq(&self, other: &TransactionResponseDestination) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TransactionResponseDestination
Auto Trait Implementations§
impl Freeze for TransactionResponseDestination
impl RefUnwindSafe for TransactionResponseDestination
impl Send for TransactionResponseDestination
impl Sync for TransactionResponseDestination
impl Unpin for TransactionResponseDestination
impl UnwindSafe for TransactionResponseDestination
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