pub struct WithdrawRecord {Show 13 fields
pub address: String,
pub amount: f64,
pub apply_time: String,
pub coin: String,
pub id: String,
pub withdraw_order_id: Option<String>,
pub network: String,
pub transfer_type: Option<u32>,
pub status: WithdrawStatus,
pub transaction_fee: f64,
pub confirm_no: Option<u32>,
pub info: Option<String>,
pub tx_id: Option<String>,
}Expand description
Withdrawal record from history.
Fields§
§address: StringWithdrawal address.
amount: f64Amount.
apply_time: StringApply time.
coin: StringCoin symbol.
id: StringWithdrawal ID.
withdraw_order_id: Option<String>Withdraw order ID (user-supplied).
network: StringNetwork used.
transfer_type: Option<u32>Transfer type.
status: WithdrawStatusStatus.
transaction_fee: f64Transaction fee.
confirm_no: Option<u32>Confirm number.
info: Option<String>Additional info.
tx_id: Option<String>Transaction ID.
Trait Implementations§
Source§impl Clone for WithdrawRecord
impl Clone for WithdrawRecord
Source§fn clone(&self) -> WithdrawRecord
fn clone(&self) -> WithdrawRecord
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 WithdrawRecord
impl Debug for WithdrawRecord
Source§impl<'de> Deserialize<'de> for WithdrawRecord
impl<'de> Deserialize<'de> for WithdrawRecord
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 WithdrawRecord
impl RefUnwindSafe for WithdrawRecord
impl Send for WithdrawRecord
impl Sync for WithdrawRecord
impl Unpin for WithdrawRecord
impl UnwindSafe for WithdrawRecord
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