pub enum DefaultApplVerId {
Fix27,
Fix30,
Fix40,
Fix41,
Fix42,
Fix43,
Fix44,
Fix50,
Fix50Sp1,
Fix50Sp2,
FixLatest,
}
Variants§
Fix27
Value “0”
Fix30
Value “1”
Fix40
Value “2”
Fix41
Value “3”
Fix42
Value “4”
Fix43
Value “5”
Fix44
Value “6”
Fix50
Value “7”
Fix50Sp1
Value “8”
Fix50Sp2
Value “9”
FixLatest
Value “10”
Implementations§
Source§impl DefaultApplVerId
impl DefaultApplVerId
pub const fn from_bytes(input: &[u8]) -> Option<DefaultApplVerId>
pub const fn from_fix_str(input: &FixStr) -> Option<DefaultApplVerId>
pub const fn as_bytes(&self) -> &'static [u8] ⓘ
pub const fn as_fix_str(&self) -> &'static FixStr
Trait Implementations§
Source§impl Clone for DefaultApplVerId
impl Clone for DefaultApplVerId
Source§fn clone(&self) -> DefaultApplVerId
fn clone(&self) -> DefaultApplVerId
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 DefaultApplVerId
impl Debug for DefaultApplVerId
Source§impl Default for DefaultApplVerId
impl Default for DefaultApplVerId
Source§fn default() -> DefaultApplVerId
fn default() -> DefaultApplVerId
Returns the “default value” for a type. Read more
Source§impl From<DefaultApplVerId> for &'static [u8]
impl From<DefaultApplVerId> for &'static [u8]
Source§impl PartialEq for DefaultApplVerId
impl PartialEq for DefaultApplVerId
Source§impl ToFixString for DefaultApplVerId
impl ToFixString for DefaultApplVerId
fn to_fix_string(&self) -> FixString
Source§impl TryFrom<&FixStr> for DefaultApplVerId
impl TryFrom<&FixStr> for DefaultApplVerId
Source§type Error = ParseRejectReason
type Error = ParseRejectReason
The type returned in the event of a conversion error.
Source§fn try_from(input: &FixStr) -> Result<DefaultApplVerId, ParseRejectReason>
fn try_from(input: &FixStr) -> Result<DefaultApplVerId, ParseRejectReason>
Performs the conversion.
impl Copy for DefaultApplVerId
impl Eq for DefaultApplVerId
impl StructuralPartialEq for DefaultApplVerId
Auto Trait Implementations§
impl Freeze for DefaultApplVerId
impl RefUnwindSafe for DefaultApplVerId
impl Send for DefaultApplVerId
impl Sync for DefaultApplVerId
impl Unpin for DefaultApplVerId
impl UnwindSafe for DefaultApplVerId
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