pub struct CryptoMaxBuySellQtyRequest {
pub account_market: u32,
pub order_type: u32,
pub coin: String,
pub currency: String,
pub price: Option<String>,
pub order_id: Option<String>,
}Expand description
Query crypto max buy/sell quantity through CMD20622.
C++ NNProto_Trd_MaxQtyCrypto.cpp:14-38,49-78 builds
crypto_risk::GetMaxBuySellReq from account context, cc_origin, and
cc_destination.
Fields§
§account_market: u32§order_type: u32§coin: String§currency: String§price: Option<String>§order_id: Option<String>Trait Implementations§
Source§impl Clone for CryptoMaxBuySellQtyRequest
impl Clone for CryptoMaxBuySellQtyRequest
Source§fn clone(&self) -> CryptoMaxBuySellQtyRequest
fn clone(&self) -> CryptoMaxBuySellQtyRequest
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 moreAuto Trait Implementations§
impl Freeze for CryptoMaxBuySellQtyRequest
impl RefUnwindSafe for CryptoMaxBuySellQtyRequest
impl Send for CryptoMaxBuySellQtyRequest
impl Sync for CryptoMaxBuySellQtyRequest
impl Unpin for CryptoMaxBuySellQtyRequest
impl UnsafeUnpin for CryptoMaxBuySellQtyRequest
impl UnwindSafe for CryptoMaxBuySellQtyRequest
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