pub struct BithumbDeposit {
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,
}Expand description
Deposit 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
Trait Implementations§
Source§impl Clone for BithumbDeposit
impl Clone for BithumbDeposit
Source§fn clone(&self) -> BithumbDeposit
fn clone(&self) -> BithumbDeposit
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 BithumbDeposit
impl Debug for BithumbDeposit
Source§impl<'de> Deserialize<'de> for BithumbDeposit
impl<'de> Deserialize<'de> for BithumbDeposit
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 BithumbDeposit
impl RefUnwindSafe for BithumbDeposit
impl Send for BithumbDeposit
impl Sync for BithumbDeposit
impl Unpin for BithumbDeposit
impl UnwindSafe for BithumbDeposit
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