pub struct WithdrawFundsBody {
pub amount: WithdrawFundsBodyAmount,
pub asset: WithdrawFundsBodyAsset,
pub key: WithdrawFundsBodyKey,
}Expand description
WithdrawFundsBody
JSON schema
{
"examples": [
{
"amount": "100.00",
"asset": "BTC",
"key": "key"
}
],
"type": "object",
"required": [
"amount",
"asset",
"key"
],
"properties": {
"amount": {
"type": "string",
"maxLength": 64,
"minLength": 1,
"pattern": "^-?[0-9]+(\\.[0-9]+)?$"
},
"asset": {
"type": "string",
"maxLength": 16
},
"key": {
"type": "string",
"minLength": 1
}
}
}Fields§
§amount: WithdrawFundsBodyAmount§asset: WithdrawFundsBodyAsset§key: WithdrawFundsBodyKeyTrait Implementations§
Source§impl Clone for WithdrawFundsBody
impl Clone for WithdrawFundsBody
Source§fn clone(&self) -> WithdrawFundsBody
fn clone(&self) -> WithdrawFundsBody
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 WithdrawFundsBody
impl Debug for WithdrawFundsBody
Source§impl<'de> Deserialize<'de> for WithdrawFundsBody
impl<'de> Deserialize<'de> for WithdrawFundsBody
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 From<&WithdrawFundsBody> for WithdrawFundsBody
impl From<&WithdrawFundsBody> for WithdrawFundsBody
Source§fn from(value: &WithdrawFundsBody) -> Self
fn from(value: &WithdrawFundsBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WithdrawFundsBody
impl RefUnwindSafe for WithdrawFundsBody
impl Send for WithdrawFundsBody
impl Sync for WithdrawFundsBody
impl Unpin for WithdrawFundsBody
impl UnwindSafe for WithdrawFundsBody
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