pub struct Withdrawal {
pub id: i32,
pub blockchain: Blockchain,
pub client_id: Option<String>,
pub identifier: Option<String>,
pub quantity: Decimal,
pub fee: Decimal,
pub symbol: String,
pub status: WithdrawalStatus,
pub subaccount_id: Option<u64>,
pub to_address: String,
pub transaction_hash: Option<String>,
pub created_at: NaiveDateTime,
}Fields§
§id: i32§blockchain: Blockchain§client_id: Option<String>§identifier: Option<String>§quantity: Decimal§fee: Decimal§symbol: String§status: WithdrawalStatus§subaccount_id: Option<u64>§to_address: String§transaction_hash: Option<String>§created_at: NaiveDateTimeTrait Implementations§
Source§impl Clone for Withdrawal
impl Clone for Withdrawal
Source§fn clone(&self) -> Withdrawal
fn clone(&self) -> Withdrawal
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Withdrawal
impl Debug for Withdrawal
Source§impl<'de> Deserialize<'de> for Withdrawal
impl<'de> Deserialize<'de> for Withdrawal
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 Withdrawal
impl RefUnwindSafe for Withdrawal
impl Send for Withdrawal
impl Sync for Withdrawal
impl Unpin for Withdrawal
impl UnwindSafe for Withdrawal
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