pub struct NoOrders { /* private fields */ }

Implementations§

source§

impl NoOrders

source

pub const FIELD_ID: i32 = 73i32

source

pub const DELIMITER: i32 = 11i32

source

pub fn try_new( cl_ord_id: ClOrdID, cum_qty: CumQty, ord_status: OrdStatus, leaves_qty: LeavesQty, cxl_qty: CxlQty, avg_px: AvgPx ) -> Result<Self, QuickFixError>

source§

impl NoOrders

source

pub fn get_cl_ord_id(&self) -> ClOrdID

source

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

source

pub fn get_cum_qty(&self) -> CumQty

source

pub fn get_ord_status(&self) -> OrdStatus

source

pub fn get_working_indicator(&self) -> Option<WorkingIndicator>

source

pub fn get_leaves_qty(&self) -> LeavesQty

source

pub fn get_cxl_qty(&self) -> CxlQty

source

pub fn get_avg_px(&self) -> AvgPx

source

pub fn get_ord_rej_reason(&self) -> Option<OrdRejReason>

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_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_cum_qty(&mut self, value: CumQty) -> Result<&Self, QuickFixError>

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

pub fn remove_ord_rej_reason(&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 NoOrders

source§

fn clone(&self) -> NoOrders

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 NoOrders

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.