pub struct PrivateWithdrawRequest {
pub currency: Currency,
pub address: String,
pub amount: f64,
pub priority: Option<WithdrawalPriority>,
}Fields§
§currency: Currency§address: String§amount: f64§priority: Option<WithdrawalPriority>Trait Implementations§
Source§impl ApiRequest for PrivateWithdrawRequest
impl ApiRequest for PrivateWithdrawRequest
Source§impl Clone for PrivateWithdrawRequest
impl Clone for PrivateWithdrawRequest
Source§fn clone(&self) -> PrivateWithdrawRequest
fn clone(&self) -> PrivateWithdrawRequest
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 PrivateWithdrawRequest
impl Debug for PrivateWithdrawRequest
Source§impl Default for PrivateWithdrawRequest
impl Default for PrivateWithdrawRequest
Source§fn default() -> PrivateWithdrawRequest
fn default() -> PrivateWithdrawRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrivateWithdrawRequest
impl<'de> Deserialize<'de> for PrivateWithdrawRequest
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 PartialEq for PrivateWithdrawRequest
impl PartialEq for PrivateWithdrawRequest
Source§impl Serialize for PrivateWithdrawRequest
impl Serialize for PrivateWithdrawRequest
impl StructuralPartialEq for PrivateWithdrawRequest
Auto Trait Implementations§
impl Freeze for PrivateWithdrawRequest
impl RefUnwindSafe for PrivateWithdrawRequest
impl Send for PrivateWithdrawRequest
impl Sync for PrivateWithdrawRequest
impl Unpin for PrivateWithdrawRequest
impl UnwindSafe for PrivateWithdrawRequest
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