pub struct WithdrawFundsRequest {
pub asset: String,
pub key: String,
pub amount: Decimal,
pub address: Option<String>,
pub max_fee: Option<Decimal>,
}
Expand description
A request to withdraw funds.
Fields§
§asset: String
§key: String
§amount: Decimal
§address: Option<String>
§max_fee: Option<Decimal>
Implementations§
Trait Implementations§
Source§impl Clone for WithdrawFundsRequest
impl Clone for WithdrawFundsRequest
Source§fn clone(&self) -> WithdrawFundsRequest
fn clone(&self) -> WithdrawFundsRequest
Returns a copy 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 WithdrawFundsRequest
impl Debug for WithdrawFundsRequest
Source§impl ToQueryParams for WithdrawFundsRequest
impl ToQueryParams for WithdrawFundsRequest
Auto Trait Implementations§
impl Freeze for WithdrawFundsRequest
impl RefUnwindSafe for WithdrawFundsRequest
impl Send for WithdrawFundsRequest
impl Sync for WithdrawFundsRequest
impl Unpin for WithdrawFundsRequest
impl UnwindSafe for WithdrawFundsRequest
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