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§