pub struct Withdrawal {
pub address: String,
pub amount: f64,
pub currency: String,
pub fee: f64,
pub id: u64,
pub priority: String,
pub state: String,
pub created_timestamp: u64,
pub updated_timestamp: Option<u64>,
pub transaction_id: Option<String>,
}Expand description
Withdrawal information
Fields§
§address: StringWithdrawal address
amount: f64Withdrawal amount
currency: StringCurrency of the withdrawal
fee: f64Withdrawal fee
id: u64Unique withdrawal identifier
priority: StringWithdrawal priority level
state: StringCurrent state of the withdrawal
created_timestamp: u64Timestamp when withdrawal was created
updated_timestamp: Option<u64>Timestamp when withdrawal was last updated
transaction_id: Option<String>Transaction ID on the blockchain
Trait 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
Source§impl Display for Withdrawal
impl Display for Withdrawal
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