ocpp_rs 0.3.0

Protocol implementation for Open Charge Point Protocol (OCPP) in Rust.
Documentation
1
2
3
4
5
6
7
8
//! Datetime serde helpers for OCPP 2.1 (re-exports shared [`crate::datetime`] modules).
//!
//! Parse is always RFC3339. Serialize defaults to `%.3fZ` unless
//! `datetime_serialize_rfc3339` is enabled.

pub use crate::datetime::{
    date_time as rfc3339_date_time, date_time_optional as rfc3339_date_time_optional,
};