pub struct PlaceOrderParams {
pub market: String,
pub side: String,
pub size: f64,
pub price: Option<f64>,
pub live: Option<bool>,
}Fields§
§market: String§side: String§size: f64§price: Option<f64>§live: Option<bool>Trait Implementations§
Auto Trait Implementations§
impl Freeze for PlaceOrderParams
impl RefUnwindSafe for PlaceOrderParams
impl Send for PlaceOrderParams
impl Sync for PlaceOrderParams
impl Unpin for PlaceOrderParams
impl UnsafeUnpin for PlaceOrderParams
impl UnwindSafe for PlaceOrderParams
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