[][src]Crate fixparser

fixparser is a Rust library to decode FIX (Financial Information eXchange) messages.

  • It supports groups and you don't need a FIX dictionary
  • You don't need to specify the separator of the input string as long as they are consistent. eg: 0x01, |, etc...
  • You don't need to "trim" the input string as the lib detects the beginning and end of the message

Currently supported input:

Currently supported output:

  • Json string

Structs

FixMessage

This is the interface you interact with.