pub struct AddLiquidityRequest {
pub product_id: String,
pub order_link_id: String,
pub quote_account_type: Option<String>,
pub base_account_type: Option<String>,
pub quote_amount: Option<String>,
pub base_amount: Option<String>,
pub leverage: Option<String>,
}Fields§
§product_id: String§order_link_id: String§quote_account_type: Option<String>§base_account_type: Option<String>§quote_amount: Option<String>§base_amount: Option<String>§leverage: Option<String>Trait Implementations§
Source§impl Clone for AddLiquidityRequest
impl Clone for AddLiquidityRequest
Source§fn clone(&self) -> AddLiquidityRequest
fn clone(&self) -> AddLiquidityRequest
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 Debug for AddLiquidityRequest
impl Debug for AddLiquidityRequest
Source§impl<'de> Deserialize<'de> for AddLiquidityRequest
impl<'de> Deserialize<'de> for AddLiquidityRequest
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 AddLiquidityRequest
impl RefUnwindSafe for AddLiquidityRequest
impl Send for AddLiquidityRequest
impl Sync for AddLiquidityRequest
impl Unpin for AddLiquidityRequest
impl UnsafeUnpin for AddLiquidityRequest
impl UnwindSafe for AddLiquidityRequest
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