Skip to main content

StreamAssignmentReport

Struct StreamAssignmentReport 

Source
pub struct StreamAssignmentReport {
    pub message: Message,
}
Expand description

StreamAssignmentReport is the fix50sp2 StreamAssignmentReport type, MsgType = CD.

Fields§

§message: Message

Implementations§

Source§

impl StreamAssignmentReport

Source

pub fn new(stream_asgn_rpt_id: StreamAsgnRptIDField) -> Self

Creates a new StreamAssignmentReport with required fields.

Source

pub fn from_message(msg: Message) -> Self

Creates a StreamAssignmentReport from an existing Message.

Source

pub fn to_message(self) -> Message

Returns the underlying Message.

Source

pub fn set_no_asgn_reqs(&mut self, v: isize)

Sets NoAsgnReqs, Tag 1499.

Source

pub fn get_no_asgn_reqs(&self) -> Result<isize, MessageRejectErrorEnum>

Gets NoAsgnReqs, Tag 1499.

Source

pub fn has_no_asgn_reqs(&self) -> bool

Returns true if NoAsgnReqs is present, Tag 1499.

Source

pub fn set_stream_asgn_req_id(&mut self, v: String)

Sets StreamAsgnReqID, Tag 1497.

Source

pub fn get_stream_asgn_req_id(&self) -> Result<String, MessageRejectErrorEnum>

Gets StreamAsgnReqID, Tag 1497.

Source

pub fn has_stream_asgn_req_id(&self) -> bool

Returns true if StreamAsgnReqID is present, Tag 1497.

Source

pub fn set_stream_asgn_req_type(&mut self, v: isize)

Sets StreamAsgnReqType, Tag 1498.

Source

pub fn get_stream_asgn_req_type(&self) -> Result<isize, MessageRejectErrorEnum>

Gets StreamAsgnReqType, Tag 1498.

Source

pub fn has_stream_asgn_req_type(&self) -> bool

Returns true if StreamAsgnReqType is present, Tag 1498.

Source

pub fn set_stream_asgn_rpt_id(&mut self, v: String)

Sets StreamAsgnRptID, Tag 1501.

Source

pub fn get_stream_asgn_rpt_id(&self) -> Result<String, MessageRejectErrorEnum>

Gets StreamAsgnRptID, Tag 1501.

Source

pub fn has_stream_asgn_rpt_id(&self) -> bool

Returns true if StreamAsgnRptID is present, Tag 1501.

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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

Source§

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.