pub struct TransferResponseObject {Show 13 fields
pub id: String,
pub type_field: String,
pub debit_asset: String,
pub credit_asset: String,
pub debit_amount: String,
pub credit_amount: String,
pub transaction_hash: Option<String>,
pub status: String,
pub created_at: String,
pub confirmed_at: Option<String>,
pub client_id: String,
pub from_address: Option<String>,
pub to_address: Option<String>,
}Fields§
§id: String§type_field: String§debit_asset: String§credit_asset: String§debit_amount: String§credit_amount: String§transaction_hash: Option<String>§status: String§created_at: String§confirmed_at: Option<String>§client_id: String§from_address: Option<String>§to_address: Option<String>Trait Implementations§
Source§impl Clone for TransferResponseObject
impl Clone for TransferResponseObject
Source§fn clone(&self) -> TransferResponseObject
fn clone(&self) -> TransferResponseObject
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 TransferResponseObject
impl Debug for TransferResponseObject
Source§impl<'de> Deserialize<'de> for TransferResponseObject
impl<'de> Deserialize<'de> for TransferResponseObject
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 TransferResponseObject
impl RefUnwindSafe for TransferResponseObject
impl Send for TransferResponseObject
impl Sync for TransferResponseObject
impl Unpin for TransferResponseObject
impl UnwindSafe for TransferResponseObject
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