pub struct WithdrawRecord {
pub withdraw_id: String,
pub tx_i_d: String,
pub withdraw_type: i32,
pub coin: String,
pub chain: String,
pub amount: String,
pub withdraw_fee: String,
pub status: String,
pub to_address: String,
pub tag: String,
pub create_time: String,
pub update_time: String,
}Expand description
Withdraw record.
Fields§
§withdraw_id: StringWithdraw ID
tx_i_d: StringTx ID
withdraw_type: i32Withdraw type
coin: StringCoin
chain: StringChain
amount: StringAmount
withdraw_fee: StringWithdraw fee
status: StringStatus
to_address: StringTo address
tag: StringTag
create_time: StringCreate time
update_time: StringUpdate time
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 UnsafeUnpin 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