pub struct GetTransactionDetailsResponse {
pub system_address: String,
pub amount: Decimal,
pub status: ApiTxStatus,
pub network: ApiNetwork,
}Fields§
§system_address: StringAddress where to send the amount
amount: DecimalTotal amount of crypto currency to send
status: ApiTxStatusThe Status of transaction
network: ApiNetworkThe network that the transaction is sent in
Trait Implementations§
Source§impl Clone for GetTransactionDetailsResponse
impl Clone for GetTransactionDetailsResponse
Source§fn clone(&self) -> GetTransactionDetailsResponse
fn clone(&self) -> GetTransactionDetailsResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for GetTransactionDetailsResponse
impl<'de> Deserialize<'de> for GetTransactionDetailsResponse
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 GetTransactionDetailsResponse
impl PartialEq for GetTransactionDetailsResponse
Source§fn eq(&self, other: &GetTransactionDetailsResponse) -> bool
fn eq(&self, other: &GetTransactionDetailsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetTransactionDetailsResponse
Auto Trait Implementations§
impl Freeze for GetTransactionDetailsResponse
impl RefUnwindSafe for GetTransactionDetailsResponse
impl Send for GetTransactionDetailsResponse
impl Sync for GetTransactionDetailsResponse
impl Unpin for GetTransactionDetailsResponse
impl UnsafeUnpin for GetTransactionDetailsResponse
impl UnwindSafe for GetTransactionDetailsResponse
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