pub struct NewOrderList { /* private fields */ }

Implementations§

source§

impl NewOrderList

source

pub const MSG_TYPE_BYTES: &'static str = "E"

source

pub const MSG_TYPE: MsgType = _

source

pub fn header(&mut self) -> Header<'_>

source

pub fn header_mut(&mut self) -> HeaderMut<'_>

source

pub fn trailer(&mut self) -> Trailer<'_>

source

pub fn trailer_mut(&mut self) -> TrailerMut<'_>

source

pub fn to_fix_string(&self) -> String

Convert inner message as FIX text.

This method is only here for debug / tests purposes. Do not use this in real production code.

source§

impl NewOrderList

source

pub fn try_new( list_id: ListID, bid_type: BidType, tot_no_orders: TotNoOrders ) -> Result<Self, QuickFixError>

source§

impl NewOrderList

source

pub fn get_list_id(&self) -> ListID

source

pub fn get_bid_id(&self) -> Option<BidID>

source

pub fn get_client_bid_id(&self) -> Option<ClientBidID>

source

pub fn get_prog_rpt_reqs(&self) -> Option<ProgRptReqs>

source

pub fn get_bid_type(&self) -> BidType

source

pub fn get_prog_period_interval(&self) -> Option<ProgPeriodInterval>

source

pub fn get_cancellation_rights(&self) -> Option<CancellationRights>

source

pub fn get_money_laundering_status(&self) -> Option<MoneyLaunderingStatus>

source

pub fn get_regist_id(&self) -> Option<RegistID>

source

pub fn get_list_exec_inst_type(&self) -> Option<ListExecInstType>

source

pub fn get_list_exec_inst(&self) -> Option<ListExecInst>

source

pub fn get_encoded_list_exec_inst_len(&self) -> Option<EncodedListExecInstLen>

source

pub fn get_encoded_list_exec_inst(&self) -> Option<EncodedListExecInst>

source

pub fn get_allowable_one_sidedness_pct( &self ) -> Option<AllowableOneSidednessPct>

source

pub fn get_allowable_one_sidedness_value( &self ) -> Option<AllowableOneSidednessValue>

source

pub fn get_allowable_one_sidedness_curr( &self ) -> Option<AllowableOneSidednessCurr>

source

pub fn get_tot_no_orders(&self) -> TotNoOrders

source

pub fn get_last_fragment(&self) -> Option<LastFragment>

source

pub fn clone_group_no_orders(&self, index: usize) -> Option<NoOrders>

source

pub fn set_list_id(&mut self, value: ListID) -> Result<&Self, QuickFixError>

source

pub fn set_bid_id(&mut self, value: BidID) -> Result<&Self, QuickFixError>

source

pub fn remove_bid_id(&mut self) -> Result<&Self, QuickFixError>

source

pub fn set_client_bid_id( &mut self, value: ClientBidID ) -> Result<&Self, QuickFixError>

source

pub fn remove_client_bid_id(&mut self) -> Result<&Self, QuickFixError>

source

pub fn set_prog_rpt_reqs( &mut self, value: ProgRptReqs ) -> Result<&Self, QuickFixError>

source

pub fn remove_prog_rpt_reqs(&mut self) -> Result<&Self, QuickFixError>

source

pub fn set_bid_type(&mut self, value: BidType) -> Result<&Self, QuickFixError>

source

pub fn set_prog_period_interval( &mut self, value: ProgPeriodInterval ) -> Result<&Self, QuickFixError>

source

pub fn remove_prog_period_interval(&mut self) -> Result<&Self, QuickFixError>

source

pub fn set_cancellation_rights( &mut self, value: CancellationRights ) -> Result<&Self, QuickFixError>

source

pub fn remove_cancellation_rights(&mut self) -> Result<&Self, QuickFixError>

source

pub fn set_money_laundering_status( &mut self, value: MoneyLaunderingStatus ) -> Result<&Self, QuickFixError>

source

pub fn remove_money_laundering_status(&mut self) -> Result<&Self, QuickFixError>

source

pub fn set_regist_id(&mut self, value: RegistID) -> Result<&Self, QuickFixError>

source

pub fn remove_regist_id(&mut self) -> Result<&Self, QuickFixError>

source

pub fn set_list_exec_inst_type( &mut self, value: ListExecInstType ) -> Result<&Self, QuickFixError>

source

pub fn remove_list_exec_inst_type(&mut self) -> Result<&Self, QuickFixError>

source

pub fn set_list_exec_inst( &mut self, value: ListExecInst ) -> Result<&Self, QuickFixError>

source

pub fn remove_list_exec_inst(&mut self) -> Result<&Self, QuickFixError>

source

pub fn set_encoded_list_exec_inst_len( &mut self, value: EncodedListExecInstLen ) -> Result<&Self, QuickFixError>

source

pub fn remove_encoded_list_exec_inst_len( &mut self ) -> Result<&Self, QuickFixError>

source

pub fn set_encoded_list_exec_inst( &mut self, value: EncodedListExecInst ) -> Result<&Self, QuickFixError>

source

pub fn remove_encoded_list_exec_inst(&mut self) -> Result<&Self, QuickFixError>

source

pub fn set_allowable_one_sidedness_pct( &mut self, value: AllowableOneSidednessPct ) -> Result<&Self, QuickFixError>

source

pub fn remove_allowable_one_sidedness_pct( &mut self ) -> Result<&Self, QuickFixError>

source

pub fn set_allowable_one_sidedness_value( &mut self, value: AllowableOneSidednessValue ) -> Result<&Self, QuickFixError>

source

pub fn remove_allowable_one_sidedness_value( &mut self ) -> Result<&Self, QuickFixError>

source

pub fn set_allowable_one_sidedness_curr( &mut self, value: AllowableOneSidednessCurr ) -> Result<&Self, QuickFixError>

source

pub fn remove_allowable_one_sidedness_curr( &mut self ) -> Result<&Self, QuickFixError>

source

pub fn set_tot_no_orders( &mut self, value: TotNoOrders ) -> Result<&Self, QuickFixError>

source

pub fn set_last_fragment( &mut self, value: LastFragment ) -> Result<&Self, QuickFixError>

source

pub fn remove_last_fragment(&mut self) -> Result<&Self, QuickFixError>

source

pub fn add_no_orders(&mut self, value: NoOrders) -> Result<&Self, QuickFixError>

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 From<Message> for NewOrderList

source§

fn from(input: Message) -> Self

Converts to this type from the input type.
source§

impl From<NewOrderList> for Message

source§

fn from(input: NewOrderList) -> Self

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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,

§

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>,

§

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>,

§

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.