1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! # Implementation of the OCPP 2.0.1 Specification
//!
//! ## Messages, Datatypes & Enumerations
//!
//! The following modules implements all messages, datatypes and enumerations
//! of the ocpp 2.0.1 specification
//!

/// datatypes
pub mod datatypes;

/// enumerations
pub mod enumerations;

/// messages
pub mod messages;

/// helper functions
pub mod helpers;


/// tests
#[cfg(test)]
pub mod tests;