pub struct ComboLeg {
pub con_id: i32,
pub ratio: i32,
pub action: String,
pub exchange: String,
pub open_close: LegOpenClose,
pub short_sale_slot: i32,
pub designated_location: String,
pub exempt_code: i32,
}Expand description
Contract combo leg.
Fields§
§con_id: i32Contract id.
ratio: i32Leg ratio.
action: StringBUY/SELL/SHORT.
exchange: StringExchange.
open_close: LegOpenCloseOpen/close marker.
short_sale_slot: i32Short-sale slot.
designated_location: StringDesignated location.
exempt_code: i32Exempt code.
Trait Implementations§
impl Eq for ComboLeg
impl StructuralPartialEq for ComboLeg
Auto Trait Implementations§
impl Freeze for ComboLeg
impl RefUnwindSafe for ComboLeg
impl Send for ComboLeg
impl Sync for ComboLeg
impl Unpin for ComboLeg
impl UnsafeUnpin for ComboLeg
impl UnwindSafe for ComboLeg
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