pub enum FixVersion {
Fix42,
Fix44,
}Expand description
FIX protocol version.
Variants§
Implementations§
Source§impl FixVersion
impl FixVersion
Sourcepub fn begin_string(&self) -> &'static str
pub fn begin_string(&self) -> &'static str
Get the BeginString value for this version.
Trait Implementations§
Source§impl Clone for FixVersion
impl Clone for FixVersion
Source§fn clone(&self) -> FixVersion
fn clone(&self) -> FixVersion
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 FixVersion
impl Debug for FixVersion
Source§impl Default for FixVersion
impl Default for FixVersion
Source§fn default() -> FixVersion
fn default() -> FixVersion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FixVersion
impl<'de> Deserialize<'de> for FixVersion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for FixVersion
impl Display for FixVersion
Source§impl PartialEq for FixVersion
impl PartialEq for FixVersion
Source§impl Serialize for FixVersion
impl Serialize for FixVersion
impl Copy for FixVersion
impl Eq for FixVersion
impl StructuralPartialEq for FixVersion
Auto Trait Implementations§
impl Freeze for FixVersion
impl RefUnwindSafe for FixVersion
impl Send for FixVersion
impl Sync for FixVersion
impl Unpin for FixVersion
impl UnwindSafe for FixVersion
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