Enum rust_ocpp::v1_6::types::ConfigurationStatus
source · pub enum ConfigurationStatus {
Accepted,
Rejected,
RebootRequired,
NotSupported,
}
Variants§
Accepted
From OCPP Specification
Configuration key is supported and setting has been changed.
Rejected
From OCPP Specification
Configuration key is supported, but setting could not be changed.
RebootRequired
From OCPP Specification
Configuration key is supported and setting has been changed, but change will be available after reboot (Charge Point will not reboot itself)
NotSupported
From OCPP Specification
Configuration key is not supported.
Trait Implementations§
source§impl Clone for ConfigurationStatus
impl Clone for ConfigurationStatus
source§fn clone(&self) -> ConfigurationStatus
fn clone(&self) -> ConfigurationStatus
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ConfigurationStatus
impl Debug for ConfigurationStatus
source§impl Default for ConfigurationStatus
impl Default for ConfigurationStatus
source§fn default() -> ConfigurationStatus
fn default() -> ConfigurationStatus
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ConfigurationStatus
impl<'de> Deserialize<'de> for ConfigurationStatus
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<ConfigurationStatus> for ConfigurationStatus
impl PartialEq<ConfigurationStatus> for ConfigurationStatus
source§fn eq(&self, other: &ConfigurationStatus) -> bool
fn eq(&self, other: &ConfigurationStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.