pub struct NoSides { /* private fields */ }

Implementations§

source§

impl NoSides

source

pub const FIELD_ID: i32 = 552i32

source

pub const DELIMITER: i32 = 54i32

source

pub fn try_new( side: Side, orig_cl_ord_id: OrigClOrdID, cl_ord_id: ClOrdID ) -> Result<Self, QuickFixError>

source§

impl NoSides

source

pub fn get_side(&self) -> Side

source

pub fn get_orig_cl_ord_id(&self) -> OrigClOrdID

source

pub fn get_cl_ord_id(&self) -> ClOrdID

source

pub fn get_secondary_cl_ord_id(&self) -> Option<SecondaryClOrdID>

source

pub fn get_orig_ord_mod_time(&self) -> Option<OrigOrdModTime>

source

pub fn clone_group_no_party_i_ds(&self, index: usize) -> Option<NoPartyIDs>

source

pub fn get_trade_origination_date(&self) -> Option<TradeOriginationDate>

source

pub fn get_order_qty(&self) -> Option<OrderQty>

source

pub fn get_cash_order_qty(&self) -> Option<CashOrderQty>

source

pub fn get_order_percent(&self) -> Option<OrderPercent>

source

pub fn get_rounding_direction(&self) -> Option<RoundingDirection>

source

pub fn get_rounding_modulus(&self) -> Option<RoundingModulus>

source

pub fn get_compliance_id(&self) -> Option<ComplianceID>

source

pub fn get_text(&self) -> Option<Text>

source

pub fn get_encoded_text_len(&self) -> Option<EncodedTextLen>

source

pub fn get_encoded_text(&self) -> Option<EncodedText>

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

Trait Implementations§

source§

impl Clone for NoSides

source§

fn clone(&self) -> NoSides

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 NoSides

source§

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

Formats the value using the given formatter. Read more

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.