rust-ocpp 3.0.4

ocpp 1.6, 2.0.1 and 2.1 libraries
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

/// The unit of measure in which limits and setpoints are expressed.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub enum ChargingRateUnitEnumType {
    #[serde(rename = "W")]
    W,
    #[serde(rename = "A")]
    A,
}