pub enum Execution {
MarketIoc(Box<MarketIoc>),
LimitGtc(Box<LimitGtc>),
LimitIoc(Box<LimitIoc>),
LimitFok(Box<LimitFok>),
}Expand description
Required execution behavior. The selected variant exposes only fields that can be honored together.
Variants§
Trait Implementations§
impl Oneof for Execution
impl StructuralPartialEq for Execution
Auto Trait Implementations§
impl Freeze for Execution
impl RefUnwindSafe for Execution
impl Send for Execution
impl Sync for Execution
impl Unpin for Execution
impl UnsafeUnpin for Execution
impl UnwindSafe for Execution
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