pub struct BithumbWithdrawal {
pub transaction_type: SmartString,
pub uuid: SmartString,
pub currency: SmartString,
pub txid: Option<SmartString>,
pub state: SmartString,
pub created_at: SmartString,
pub amount: SmartString,
pub fee: SmartString,
pub address: Option<SmartString>,
pub secondary_address: Option<SmartString>,
}Expand description
Withdrawal transaction information
Fields§
§transaction_type: SmartStringTransaction type
uuid: SmartStringTransaction UUID
currency: SmartStringCurrency code
txid: Option<SmartString>Transaction hash
state: SmartStringTransaction state
created_at: SmartStringTransaction timestamp
amount: SmartStringTransaction amount
fee: SmartStringTransaction fee
address: Option<SmartString>Withdrawal address
secondary_address: Option<SmartString>Secondary address
Trait Implementations§
Source§impl Clone for BithumbWithdrawal
impl Clone for BithumbWithdrawal
Source§fn clone(&self) -> BithumbWithdrawal
fn clone(&self) -> BithumbWithdrawal
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BithumbWithdrawal
impl Debug for BithumbWithdrawal
Source§impl<'de> Deserialize<'de> for BithumbWithdrawal
impl<'de> Deserialize<'de> for BithumbWithdrawal
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 BithumbWithdrawal
impl RefUnwindSafe for BithumbWithdrawal
impl Send for BithumbWithdrawal
impl Sync for BithumbWithdrawal
impl Unpin for BithumbWithdrawal
impl UnwindSafe for BithumbWithdrawal
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