Struct NewOrderList

Source
pub struct NewOrderList {
Show 20 fields pub list_id: FixString, pub bid_id: Option<FixString>, pub client_bid_id: Option<FixString>, pub prog_rpt_reqs: Option<ProgRptReqs>, pub bid_type: BidType, pub prog_period_interval: Option<Int>, pub cancellation_rights: Option<CancellationRights>, pub money_laundering_status: Option<MoneyLaunderingStatus>, pub regist_id: Option<FixString>, pub list_exec_inst_type: Option<ListExecInstType>, pub list_exec_inst: Option<FixString>, pub contingency_type: Option<ContingencyType>, pub encoded_list_exec_inst: Option<Data>, pub allowable_one_sidedness_pct: Option<Percentage>, pub allowable_one_sidedness_value: Option<Amt>, pub allowable_one_sidedness_curr: Option<Currency>, pub tot_no_orders: Int, pub last_fragment: Option<Boolean>, pub root_parties: Option<Vec<RootParties>>, pub list_ord_grp: Vec<ListOrdGrp>,
}

Fields§

§list_id: FixString

Tag 66.

§bid_id: Option<FixString>

Tag 390.

§client_bid_id: Option<FixString>

Tag 391.

§prog_rpt_reqs: Option<ProgRptReqs>

Tag 414.

§bid_type: BidType

Tag 394.

§prog_period_interval: Option<Int>

Tag 415.

§cancellation_rights: Option<CancellationRights>

Tag 480.

§money_laundering_status: Option<MoneyLaunderingStatus>

Tag 481.

§regist_id: Option<FixString>

Tag 513.

§list_exec_inst_type: Option<ListExecInstType>

Tag 433.

§list_exec_inst: Option<FixString>

Tag 69.

§contingency_type: Option<ContingencyType>

Tag 1385.

§encoded_list_exec_inst: Option<Data>

Tag 353.

§allowable_one_sidedness_pct: Option<Percentage>

Tag 765.

§allowable_one_sidedness_value: Option<Amt>

Tag 766.

§allowable_one_sidedness_curr: Option<Currency>

Tag 767.

§tot_no_orders: Int

Tag 68.

§last_fragment: Option<Boolean>

Tag 893.

§root_parties: Option<Vec<RootParties>>

Tag 1116.

§list_ord_grp: Vec<ListOrdGrp>

Tag 73.

Implementations§

Source§

impl NewOrderList

Source

pub const fn msg_type(&self) -> MsgType

Source

pub const fn msg_cat(&self) -> MsgCat

Trait Implementations§

Source§

impl Clone for NewOrderList

Source§

fn clone(&self) -> NewOrderList

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for NewOrderList

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for NewOrderList

Source§

fn default() -> NewOrderList

Returns the “default value” for a type. Read more
Source§

impl From<NewOrderList> for Message

Source§

fn from(msg: NewOrderList) -> Message

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more