rust_ocpp/v2_0_1/mod.rs
1//! # Implementation of the OCPP 2.0.1 Specification
2//!
3//! ## Messages, Datatypes & Enumerations
4//!
5//! The following modules implements all messages, datatypes and enumerations
6//! of the ocpp 2.0.1 specification
7//!
8
9/// datatypes
10pub mod datatypes;
11
12/// enumerations
13pub mod enumerations;
14
15/// messages
16pub mod messages;
17
18/// helper functions
19pub mod helpers;