pub type Result<T> = Result<T, FixError>;
Result type alias using FixError as the error type.
FixError
pub enum Result<T> { Ok(T), Err(FixError), }
Contains the success value
Contains the error value