pub enum MdReqRejReason {
Show 14 variants
UnknownSymbol,
DuplicateMdreqid,
InsufficientBandwidth,
InsufficientPermissions,
UnsupportedSubscriptionrequesttype,
UnsupportedMarketdepth,
UnsupportedMdupdatetype,
UnsupportedAggregatedbook,
UnsupportedMdentrytype,
UnsupportedTradingsessionid,
UnsupportedScope,
UnsupportedOpenclosesettleflag,
UnsupportedMdimplicitdelete,
InsufficientCredit,
}
Variants§
UnknownSymbol
Value “0”
DuplicateMdreqid
Value “1”
InsufficientBandwidth
Value “2”
InsufficientPermissions
Value “3”
UnsupportedSubscriptionrequesttype
Value “4”
UnsupportedMarketdepth
Value “5”
UnsupportedMdupdatetype
Value “6”
UnsupportedAggregatedbook
Value “7”
UnsupportedMdentrytype
Value “8”
UnsupportedTradingsessionid
Value “9”
UnsupportedScope
Value “A”
UnsupportedOpenclosesettleflag
Value “B”
UnsupportedMdimplicitdelete
Value “C”
InsufficientCredit
Value “D”
Implementations§
Source§impl MdReqRejReason
impl MdReqRejReason
pub const fn from_bytes(input: &[u8]) -> Option<MdReqRejReason>
pub const fn from_fix_str(input: &FixStr) -> Option<MdReqRejReason>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for MdReqRejReason
impl Clone for MdReqRejReason
Source§fn clone(&self) -> MdReqRejReason
fn clone(&self) -> MdReqRejReason
Returns a duplicate 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 MdReqRejReason
impl Debug for MdReqRejReason
Source§impl Default for MdReqRejReason
impl Default for MdReqRejReason
Source§fn default() -> MdReqRejReason
fn default() -> MdReqRejReason
Returns the “default value” for a type. Read more
Source§impl From<MdReqRejReason> for &'static [u8]
impl From<MdReqRejReason> for &'static [u8]
Source§impl PartialEq for MdReqRejReason
impl PartialEq for MdReqRejReason
Source§impl ToFixString for MdReqRejReason
impl ToFixString for MdReqRejReason
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<u8> for MdReqRejReason
impl TryFrom<u8> for MdReqRejReason
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: Char) -> Result<MdReqRejReason, ParseRejectReason>
fn try_from(input: Char) -> Result<MdReqRejReason, ParseRejectReason>
Performs the conversion.
impl Copy for MdReqRejReason
impl Eq for MdReqRejReason
impl StructuralPartialEq for MdReqRejReason
Auto Trait Implementations§
impl Freeze for MdReqRejReason
impl RefUnwindSafe for MdReqRejReason
impl Send for MdReqRejReason
impl Sync for MdReqRejReason
impl Unpin for MdReqRejReason
impl UnwindSafe for MdReqRejReason
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