1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
//! This module contains functions related to ISO8583 specifications, message, parsers etc
pub mod client;
pub mod bitmap;
pub mod field;
pub mod iso_spec;
pub mod server;
mod test;
mod yaml_de;
pub mod mli;
pub mod config;

/// IsoError represents a generic error throughout this and dependent sub-modules
#[derive(Debug)]
pub struct IsoError {
    pub msg: String,
}