rust_ocpp/v1_6/types/
update_status.rs

1/// Type of update for a SendLocalListRequest
2#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Default)]
3pub enum UpdateStatus {
4    /// Local Authorization List successfully updated.
5    #[default]
6    Accepted,
7    /// Failed to update the Local Authorization List.
8    Failed,
9    /// Update of Local Authorization List is not supported by Charge Point.
10    NotSupported,
11    /// Version number in the request for a differential update is less or equal then version number of current list.
12    VersionMismatch,
13}