pub struct MarketDataRequest {
Show 15 fields pub md_req_id: FixString, pub subscription_request_type: SubscriptionRequestType, pub parties: Option<Vec<Parties>>, pub market_depth: Int, pub md_update_type: Option<MdUpdateType>, pub aggregated_book: Option<Boolean>, pub open_close_settl_flag: Option<Vec<OpenCloseSettlFlag>>, pub scope: Option<Vec<Scope>>, pub md_implicit_delete: Option<Boolean>, pub md_req_grp: Vec<MdReqGrp>, pub instrmt_md_req_grp: Vec<InstrmtMdReqGrp>, pub trdg_ses_grp: Option<Vec<TrdgSesGrp>>, pub appl_queue_action: Option<ApplQueueAction>, pub appl_queue_max: Option<Int>, pub md_quote_type: Option<MdQuoteType>,
}

Fields§

§md_req_id: FixString§subscription_request_type: SubscriptionRequestType§parties: Option<Vec<Parties>>§market_depth: Int§md_update_type: Option<MdUpdateType>§aggregated_book: Option<Boolean>§open_close_settl_flag: Option<Vec<OpenCloseSettlFlag>>§scope: Option<Vec<Scope>>§md_implicit_delete: Option<Boolean>§md_req_grp: Vec<MdReqGrp>§instrmt_md_req_grp: Vec<InstrmtMdReqGrp>§trdg_ses_grp: Option<Vec<TrdgSesGrp>>§appl_queue_action: Option<ApplQueueAction>§appl_queue_max: Option<Int>§md_quote_type: Option<MdQuoteType>

Implementations§

source§

impl MarketDataRequest

source

pub const fn msg_type(&self) -> MsgType

source

pub const fn msg_cat(&self) -> MsgCat

Trait Implementations§

source§

impl Clone for MarketDataRequest

source§

fn clone(&self) -> MarketDataRequest

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 MarketDataRequest

source§

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

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

impl From<MarketDataRequest> for Message

source§

fn from(msg: MarketDataRequest) -> Message

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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 Twhere 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.