ocpp-client 0.2.0

OCPP Client Implementation. Use this library to implement an OCPP charge point
Documentation
1
2
3
4
5
6
7
8
mod actions;
mod error;

pub use actions::*;
pub use error::OCPP2_0_1Error;

/// OCPP 2.0.1 client - a [`crate::Client`] carrying 2.0.1's error type.
pub type OCPP2_0_1Client = crate::Client<OCPP2_0_1Error>;