pub struct GetVariablesResponse {
pub get_variable_result: Vec<GetVariableResultType>,
}
Expand description
GetVariablesResponse, sent by the CSMS to the Charging Station in response to GetVariablesRequest.
Fields§
§get_variable_result: Vec<GetVariableResultType>
List of requested variables and their values.
Trait Implementations§
Source§impl Clone for GetVariablesResponse
impl Clone for GetVariablesResponse
Source§fn clone(&self) -> GetVariablesResponse
fn clone(&self) -> GetVariablesResponse
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 GetVariablesResponse
impl Debug for GetVariablesResponse
Source§impl Default for GetVariablesResponse
impl Default for GetVariablesResponse
Source§fn default() -> GetVariablesResponse
fn default() -> GetVariablesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetVariablesResponse
impl<'de> Deserialize<'de> for GetVariablesResponse
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 GetVariablesResponse
impl PartialEq for GetVariablesResponse
Source§impl Serialize for GetVariablesResponse
impl Serialize for GetVariablesResponse
impl StructuralPartialEq for GetVariablesResponse
Auto Trait Implementations§
impl Freeze for GetVariablesResponse
impl RefUnwindSafe for GetVariablesResponse
impl Send for GetVariablesResponse
impl Sync for GetVariablesResponse
impl Unpin for GetVariablesResponse
impl UnwindSafe for GetVariablesResponse
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