Trait IsFieldDefinition

Source
pub trait IsFieldDefinition {
    // Required methods
    fn tag(&self) -> TagU32;
    fn name(&self) -> &str;
    fn location(&self) -> FieldLocation;
}

Required Methods§

Source

fn tag(&self) -> TagU32

Returns the FIX tag associated with self.

Source

fn name(&self) -> &str

Returns the official, ASCII, human-readable name associated with self.

Source

fn location(&self) -> FieldLocation

Returns the field location of self.

Implementors§