pub struct CreateCapitalWithdrawApplyV1Params {
pub address: String,
pub amount: String,
pub coin: String,
pub timestamp: i64,
pub address_tag: Option<String>,
pub name: Option<String>,
pub network: Option<String>,
pub recv_window: Option<i64>,
pub transaction_fee_flag: Option<bool>,
pub wallet_type: Option<i32>,
pub withdraw_order_id: Option<String>,
}Expand description
struct for passing parameters to the method create_capital_withdraw_apply_v1
Fields§
§address: String§amount: String§coin: String§timestamp: i64§address_tag: Option<String>§name: Option<String>§network: Option<String>§recv_window: Option<i64>§transaction_fee_flag: Option<bool>§wallet_type: Option<i32>§withdraw_order_id: Option<String>Trait Implementations§
Source§impl Clone for CreateCapitalWithdrawApplyV1Params
impl Clone for CreateCapitalWithdrawApplyV1Params
Source§fn clone(&self) -> CreateCapitalWithdrawApplyV1Params
fn clone(&self) -> CreateCapitalWithdrawApplyV1Params
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for CreateCapitalWithdrawApplyV1Params
impl Default for CreateCapitalWithdrawApplyV1Params
Source§fn default() -> CreateCapitalWithdrawApplyV1Params
fn default() -> CreateCapitalWithdrawApplyV1Params
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CreateCapitalWithdrawApplyV1Params
impl RefUnwindSafe for CreateCapitalWithdrawApplyV1Params
impl Send for CreateCapitalWithdrawApplyV1Params
impl Sync for CreateCapitalWithdrawApplyV1Params
impl Unpin for CreateCapitalWithdrawApplyV1Params
impl UnsafeUnpin for CreateCapitalWithdrawApplyV1Params
impl UnwindSafe for CreateCapitalWithdrawApplyV1Params
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