Struct easyfix_messages::groups::AllocGrp

source ·
pub struct AllocGrp {
Show 40 fields pub alloc_account: Option<FixString>, pub alloc_acct_id_source: Option<Int>, pub match_status: Option<MatchStatus>, pub alloc_price: Option<Price>, pub alloc_qty: Option<Qty>, pub individual_alloc_id: Option<FixString>, pub process_code: Option<ProcessCode>, pub secondary_individual_alloc_id: Option<FixString>, pub alloc_method: Option<AllocMethod>, pub alloc_customer_capacity: Option<FixString>, pub alloc_position_effect: Option<AllocPositionEffect>, pub individual_alloc_type: Option<IndividualAllocType>, pub nested_parties: Option<Vec<NestedParties>>, pub notify_broker_of_credit: Option<Boolean>, pub alloc_handl_inst: Option<AllocHandlInst>, pub alloc_text: Option<FixString>, pub encoded_alloc_text: Option<Data>, pub commission: Option<Amt>, pub comm_type: Option<CommType>, pub comm_currency: Option<Currency>, pub fund_renew_waiv: Option<FundRenewWaiv>, pub alloc_avg_px: Option<Price>, pub alloc_net_money: Option<Amt>, pub settl_curr_amt: Option<Amt>, pub alloc_settl_curr_amt: Option<Amt>, pub settl_currency: Option<Currency>, pub alloc_settl_currency: Option<Currency>, pub settl_curr_fx_rate: Option<Float>, pub settl_curr_fx_rate_calc: Option<SettlCurrFxRateCalc>, pub alloc_accrued_interest_amt: Option<Amt>, pub alloc_interest_at_maturity: Option<Amt>, pub misc_fees_grp: Option<Vec<MiscFeesGrp>>, pub clr_inst_grp: Option<Vec<ClrInstGrp>>, pub clearing_fee_indicator: Option<ClearingFeeIndicator>, pub alloc_settl_inst_type: Option<AllocSettlInstType>, pub settl_delivery_type: Option<SettlDeliveryType>, pub stand_inst_db_type: Option<StandInstDbType>, pub stand_inst_db_name: Option<FixString>, pub stand_inst_db_id: Option<FixString>, pub dlvy_inst_grp: Option<Vec<DlvyInstGrp>>,
}

Fields§

§alloc_account: Option<FixString>§alloc_acct_id_source: Option<Int>§match_status: Option<MatchStatus>§alloc_price: Option<Price>§alloc_qty: Option<Qty>§individual_alloc_id: Option<FixString>§process_code: Option<ProcessCode>§secondary_individual_alloc_id: Option<FixString>§alloc_method: Option<AllocMethod>§alloc_customer_capacity: Option<FixString>§alloc_position_effect: Option<AllocPositionEffect>§individual_alloc_type: Option<IndividualAllocType>§nested_parties: Option<Vec<NestedParties>>§notify_broker_of_credit: Option<Boolean>§alloc_handl_inst: Option<AllocHandlInst>§alloc_text: Option<FixString>§encoded_alloc_text: Option<Data>§commission: Option<Amt>§comm_type: Option<CommType>§comm_currency: Option<Currency>§fund_renew_waiv: Option<FundRenewWaiv>§alloc_avg_px: Option<Price>§alloc_net_money: Option<Amt>§settl_curr_amt: Option<Amt>§alloc_settl_curr_amt: Option<Amt>§settl_currency: Option<Currency>§alloc_settl_currency: Option<Currency>§settl_curr_fx_rate: Option<Float>§settl_curr_fx_rate_calc: Option<SettlCurrFxRateCalc>§alloc_accrued_interest_amt: Option<Amt>§alloc_interest_at_maturity: Option<Amt>§misc_fees_grp: Option<Vec<MiscFeesGrp>>§clr_inst_grp: Option<Vec<ClrInstGrp>>§clearing_fee_indicator: Option<ClearingFeeIndicator>§alloc_settl_inst_type: Option<AllocSettlInstType>§settl_delivery_type: Option<SettlDeliveryType>§stand_inst_db_type: Option<StandInstDbType>§stand_inst_db_name: Option<FixString>§stand_inst_db_id: Option<FixString>§dlvy_inst_grp: Option<Vec<DlvyInstGrp>>

Trait Implementations§

source§

impl Clone for AllocGrp

source§

fn clone(&self) -> AllocGrp

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 AllocGrp

source§

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

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

impl Default for AllocGrp

source§

fn default() -> AllocGrp

Returns the “default value” for a type. 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> 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,

§

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