dfx-base 1.0.0-beta

A FIX protocol implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod fields;
pub(crate) mod limits;
pub mod types;

pub use fields::*;

use crate::field_map::Tag;

pub mod converters;

#[derive(Debug, Clone)]
pub enum ConversionError {
    EncodingError,
    IntParseErr,
    InvalidTag { tag: Tag, expected: Tag }
}