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 for GetConfigurationResponse
impl PartialEq 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 ==
.source§impl Serialize for GetConfigurationResponse
impl Serialize for GetConfigurationResponse
source§impl Validate for GetConfigurationResponse
impl Validate for GetConfigurationResponse
source§impl<'v_a> ValidateArgs<'v_a> for GetConfigurationResponse
impl<'v_a> ValidateArgs<'v_a> for GetConfigurationResponse
type Args = ()
fn validate_args(&self, args: Self::Args) -> Result<(), ValidationErrors>
impl StructuralPartialEq for GetConfigurationResponse
Auto Trait Implementations§
impl RefUnwindSafe for GetConfigurationResponse
impl Send for GetConfigurationResponse
impl Sync for GetConfigurationResponse
impl Unpin for GetConfigurationResponse
impl UnwindSafe for GetConfigurationResponse
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