pub struct AccountMaxOrder {
pub max_order_quantity: Decimal,
pub symbol: String,
pub side: Side,
pub price: Option<Decimal>,
pub reduce_only: Option<bool>,
pub auto_borrow: Option<bool>,
pub auto_borrow_repay: Option<bool>,
pub auto_lend_redeem: Option<bool>,
}Fields§
§max_order_quantity: Decimal§symbol: String§side: Side§price: Option<Decimal>§reduce_only: Option<bool>§auto_borrow: Option<bool>§auto_borrow_repay: Option<bool>§auto_lend_redeem: Option<bool>Trait Implementations§
Source§impl Clone for AccountMaxOrder
impl Clone for AccountMaxOrder
Source§fn clone(&self) -> AccountMaxOrder
fn clone(&self) -> AccountMaxOrder
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 AccountMaxOrder
impl Debug for AccountMaxOrder
Source§impl<'de> Deserialize<'de> for AccountMaxOrder
impl<'de> Deserialize<'de> for AccountMaxOrder
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 AccountMaxOrder
impl RefUnwindSafe for AccountMaxOrder
impl Send for AccountMaxOrder
impl Sync for AccountMaxOrder
impl Unpin for AccountMaxOrder
impl UnwindSafe for AccountMaxOrder
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