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 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 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§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
impl StructuralPartialEq for GetConfigurationResponse
Auto Trait Implementations§
impl Freeze for GetConfigurationResponse
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