Struct rust_ocpp::v1_6::messages::get_configuration::GetConfigurationResponse
source · pub struct GetConfigurationResponse {
pub configuration_key: Option<Vec<KeyValue>>,
pub unknown_key: Option<Vec<String>>,
}
Expand description
This contains the field definition of the GetConfiguration.conf PDU sent by Charge Point the to the Central System in response to a GetConfiguration.req. See also Get Configuration
Fields§
§configuration_key: Option<Vec<KeyValue>>
Optional. List of requested or known keys
unknown_key: Option<Vec<String>>
Optional. Requested keys that are unknown
Trait Implementations§
source§impl Clone for GetConfigurationResponse
impl Clone for GetConfigurationResponse
source§fn clone(&self) -> GetConfigurationResponse
fn clone(&self) -> GetConfigurationResponse
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 GetConfigurationResponse
impl Debug for GetConfigurationResponse
source§impl Default for GetConfigurationResponse
impl Default for GetConfigurationResponse
source§fn default() -> GetConfigurationResponse
fn default() -> GetConfigurationResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GetConfigurationResponse
impl<'de> Deserialize<'de> for GetConfigurationResponse
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<GetConfigurationResponse> for GetConfigurationResponse
impl PartialEq<GetConfigurationResponse> for GetConfigurationResponse
source§fn eq(&self, other: &GetConfigurationResponse) -> bool
fn eq(&self, other: &GetConfigurationResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.