hotfix-dictionary 0.1.5

FIX dictionary generation for HotFIX.
Documentation
1
2
3
4
5
6
7
8
9
10
pub(crate) type ParseResult<T> = Result<T, ParseError>;

/// The error type that can arise when decoding a QuickFIX Dictionary.
#[derive(Clone, Debug, thiserror::Error)]
pub enum ParseError {
    #[error("invalid format")]
    InvalidFormat,
    #[error("invalid data: {0}")]
    InvalidData(String),
}