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 duplicate 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 for ConfigurationStatus
impl PartialEq for ConfigurationStatus
Source§impl Serialize for ConfigurationStatus
impl Serialize for ConfigurationStatus
impl StructuralPartialEq for ConfigurationStatus
Auto Trait Implementations§
impl Freeze for ConfigurationStatus
impl RefUnwindSafe for ConfigurationStatus
impl Send for ConfigurationStatus
impl Sync for ConfigurationStatus
impl Unpin for ConfigurationStatus
impl UnwindSafe for ConfigurationStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more