ocpp-client 0.2.2

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_1Error;

/// OCPP 2.1 client - a [`crate::Client`] carrying 2.1's error type.
pub type OCPP2_1Client = crate::Client<OCPP2_1Error>;