pub struct UpbitWithdrawal {
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>,
pub net_type: 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
net_type: Option<SmartString>Network name
Trait Implementations§
Source§impl Clone for UpbitWithdrawal
impl Clone for UpbitWithdrawal
Source§fn clone(&self) -> UpbitWithdrawal
fn clone(&self) -> UpbitWithdrawal
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 UpbitWithdrawal
impl Debug for UpbitWithdrawal
Source§impl<'de> Deserialize<'de> for UpbitWithdrawal
impl<'de> Deserialize<'de> for UpbitWithdrawal
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 UpbitWithdrawal
impl RefUnwindSafe for UpbitWithdrawal
impl Send for UpbitWithdrawal
impl Sync for UpbitWithdrawal
impl Unpin for UpbitWithdrawal
impl UnwindSafe for UpbitWithdrawal
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