pub enum GtBookingInst {
BookOutAllTradesOnDayOfExecution,
AccumulateExecutionsUntilOrderIsFilledOrExpires,
AccumulateUntilVerballyNotifiedOtherwise,
}
Variants§
BookOutAllTradesOnDayOfExecution
Value “0”
AccumulateExecutionsUntilOrderIsFilledOrExpires
Value “1”
AccumulateUntilVerballyNotifiedOtherwise
Value “2”
Implementations§
Source§impl GtBookingInst
impl GtBookingInst
pub const fn from_bytes(input: &[u8]) -> Option<GtBookingInst>
pub const fn from_fix_str(input: &FixStr) -> Option<GtBookingInst>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for GtBookingInst
impl Clone for GtBookingInst
Source§fn clone(&self) -> GtBookingInst
fn clone(&self) -> GtBookingInst
Returns a copy 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 GtBookingInst
impl Debug for GtBookingInst
Source§impl Default for GtBookingInst
impl Default for GtBookingInst
Source§fn default() -> GtBookingInst
fn default() -> GtBookingInst
Returns the “default value” for a type. Read more
Source§impl From<GtBookingInst> for &'static [u8]
impl From<GtBookingInst> for &'static [u8]
Source§impl PartialEq for GtBookingInst
impl PartialEq for GtBookingInst
Source§impl ToFixString for GtBookingInst
impl ToFixString for GtBookingInst
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<i64> for GtBookingInst
impl TryFrom<i64> for GtBookingInst
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Int) -> Result<GtBookingInst, ParseRejectReason>
fn try_from(input: Int) -> Result<GtBookingInst, ParseRejectReason>
Performs the conversion.
impl Copy for GtBookingInst
impl Eq for GtBookingInst
impl StructuralPartialEq for GtBookingInst
Auto Trait Implementations§
impl Freeze for GtBookingInst
impl RefUnwindSafe for GtBookingInst
impl Send for GtBookingInst
impl Sync for GtBookingInst
impl Unpin for GtBookingInst
impl UnwindSafe for GtBookingInst
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