pub struct WithdrawRequest {
pub trade_account_id: TradeAccountId,
pub signature: Signature,
pub nonce: String,
pub to: Identity,
pub asset_id: AssetId,
pub amount: String,
}Expand description
Request body for POST /v1/accounts/withdraw.
Fields§
§trade_account_id: TradeAccountId§signature: Signature§nonce: String§to: Identity§asset_id: AssetId§amount: StringTrait Implementations§
Source§impl Clone for WithdrawRequest
impl Clone for WithdrawRequest
Source§fn clone(&self) -> WithdrawRequest
fn clone(&self) -> WithdrawRequest
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 WithdrawRequest
impl Debug for WithdrawRequest
Source§impl<'de> Deserialize<'de> for WithdrawRequest
impl<'de> Deserialize<'de> for WithdrawRequest
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 WithdrawRequest
impl RefUnwindSafe for WithdrawRequest
impl Send for WithdrawRequest
impl Sync for WithdrawRequest
impl Unpin for WithdrawRequest
impl UnwindSafe for WithdrawRequest
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