pub struct Withdraw {Show 16 fields
pub id: String,
pub amount: Decimal,
pub transaction_fee: Decimal,
pub coin: String,
pub status: WithdrawStatus,
pub address: String,
pub tx_id: String,
pub apply_time: String,
pub network: String,
pub transfer_type: u8,
pub withdraw_order_id: Option<String>,
pub info: Option<String>,
pub confirm_no: Option<u32>,
pub wallet_type: u8,
pub tx_key: Option<String>,
pub complete_time: Option<String>,
}Fields§
§id: String§amount: Decimal§transaction_fee: Decimal§coin: String§status: WithdrawStatus§address: String§tx_id: String§apply_time: String§network: String§transfer_type: u8§withdraw_order_id: Option<String>§info: Option<String>§confirm_no: Option<u32>§wallet_type: u8§tx_key: Option<String>§complete_time: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Withdraw
impl<'de> Deserialize<'de> for Withdraw
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
impl StructuralPartialEq for Withdraw
Auto Trait Implementations§
impl Freeze for Withdraw
impl RefUnwindSafe for Withdraw
impl Send for Withdraw
impl Sync for Withdraw
impl Unpin for Withdraw
impl UnsafeUnpin for Withdraw
impl UnwindSafe for Withdraw
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