pub struct AddLiquidityParams {
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 AddLiquidityParams
impl Clone for AddLiquidityParams
Source§fn clone(&self) -> AddLiquidityParams
fn clone(&self) -> AddLiquidityParams
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 AddLiquidityParams
impl Debug for AddLiquidityParams
Source§impl<'de> Deserialize<'de> for AddLiquidityParams
impl<'de> Deserialize<'de> for AddLiquidityParams
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 AddLiquidityParams
impl RefUnwindSafe for AddLiquidityParams
impl Send for AddLiquidityParams
impl Sync for AddLiquidityParams
impl Unpin for AddLiquidityParams
impl UnsafeUnpin for AddLiquidityParams
impl UnwindSafe for AddLiquidityParams
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