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