pub enum RespondentType {
AllMarketParticipants,
SpecifiedMarketParticipants,
AllMarketMakers,
PrimaryMarketMaker,
}
Variants§
AllMarketParticipants
Value “1”
SpecifiedMarketParticipants
Value “2”
AllMarketMakers
Value “3”
PrimaryMarketMaker
Value “4”
Implementations§
Source§impl RespondentType
impl RespondentType
pub const fn from_bytes(input: &[u8]) -> Option<RespondentType>
pub const fn from_fix_str(input: &FixStr) -> Option<RespondentType>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for RespondentType
impl Clone for RespondentType
Source§fn clone(&self) -> RespondentType
fn clone(&self) -> RespondentType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RespondentType
impl Debug for RespondentType
Source§impl Default for RespondentType
impl Default for RespondentType
Source§fn default() -> RespondentType
fn default() -> RespondentType
Returns the “default value” for a type. Read more
Source§impl From<RespondentType> for &'static [u8]
impl From<RespondentType> for &'static [u8]
Source§impl PartialEq for RespondentType
impl PartialEq for RespondentType
Source§impl ToFixString for RespondentType
impl ToFixString for RespondentType
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<i64> for RespondentType
impl TryFrom<i64> for RespondentType
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Int) -> Result<RespondentType, ParseRejectReason>
fn try_from(input: Int) -> Result<RespondentType, ParseRejectReason>
Performs the conversion.
impl Copy for RespondentType
impl Eq for RespondentType
impl StructuralPartialEq for RespondentType
Auto Trait Implementations§
impl Freeze for RespondentType
impl RefUnwindSafe for RespondentType
impl Send for RespondentType
impl Sync for RespondentType
impl Unpin for RespondentType
impl UnwindSafe for RespondentType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more