pub struct OrdersConfig {
pub default_type: String,
pub default_tif: String,
pub min_size_usd: f64,
pub max_size_usd: f64,
pub max_slippage_bps: u32,
}Fields§
§default_type: String§default_tif: String§min_size_usd: f64§max_size_usd: f64§max_slippage_bps: u32Trait Implementations§
Source§impl Clone for OrdersConfig
impl Clone for OrdersConfig
Source§fn clone(&self) -> OrdersConfig
fn clone(&self) -> OrdersConfig
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 OrdersConfig
impl Debug for OrdersConfig
Source§impl Default for OrdersConfig
impl Default for OrdersConfig
Source§impl<'de> Deserialize<'de> for OrdersConfigwhere
OrdersConfig: Default,
impl<'de> Deserialize<'de> for OrdersConfigwhere
OrdersConfig: Default,
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 OrdersConfig
impl RefUnwindSafe for OrdersConfig
impl Send for OrdersConfig
impl Sync for OrdersConfig
impl Unpin for OrdersConfig
impl UnsafeUnpin for OrdersConfig
impl UnwindSafe for OrdersConfig
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