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