pub enum FieldLocation {
Header,
Body,
Trailer,
}Expand description
The expected location of a field within a FIX message (i.e. header, body, or trailer).
Variants§
Header
The field is located inside the “Standard Header”.
Body
This field is located inside the body of the FIX message.
Trailer
This field is located inside the “Standard Trailer”.
Trait Implementations§
Source§impl Clone for FieldLocation
impl Clone for FieldLocation
Source§fn clone(&self) -> FieldLocation
fn clone(&self) -> FieldLocation
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 FieldLocation
impl Debug for FieldLocation
Source§impl PartialEq for FieldLocation
impl PartialEq for FieldLocation
impl Copy for FieldLocation
impl Eq for FieldLocation
impl StructuralPartialEq for FieldLocation
Auto Trait Implementations§
impl Freeze for FieldLocation
impl RefUnwindSafe for FieldLocation
impl Send for FieldLocation
impl Sync for FieldLocation
impl Unpin for FieldLocation
impl UnwindSafe for FieldLocation
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