pub struct NotifyEVChargingNeedsRequest {
pub max_schedule_tuples: Option<i32>,
pub evse_id: i32,
pub charging_needs: ChargingNeedsType,
}
Expand description
The Charging Station uses this message to communicate the charging needs as calculated by the EV to the CSMS.
Fields§
§max_schedule_tuples: Option<i32>
§evse_id: i32
§charging_needs: ChargingNeedsType
Trait Implementations§
Source§impl Clone for NotifyEVChargingNeedsRequest
impl Clone for NotifyEVChargingNeedsRequest
Source§fn clone(&self) -> NotifyEVChargingNeedsRequest
fn clone(&self) -> NotifyEVChargingNeedsRequest
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 NotifyEVChargingNeedsRequest
impl Debug for NotifyEVChargingNeedsRequest
Source§impl Default for NotifyEVChargingNeedsRequest
impl Default for NotifyEVChargingNeedsRequest
Source§fn default() -> NotifyEVChargingNeedsRequest
fn default() -> NotifyEVChargingNeedsRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotifyEVChargingNeedsRequest
impl<'de> Deserialize<'de> for NotifyEVChargingNeedsRequest
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 NotifyEVChargingNeedsRequest
impl PartialEq for NotifyEVChargingNeedsRequest
Source§fn eq(&self, other: &NotifyEVChargingNeedsRequest) -> bool
fn eq(&self, other: &NotifyEVChargingNeedsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for NotifyEVChargingNeedsRequest
Auto Trait Implementations§
impl Freeze for NotifyEVChargingNeedsRequest
impl RefUnwindSafe for NotifyEVChargingNeedsRequest
impl Send for NotifyEVChargingNeedsRequest
impl Sync for NotifyEVChargingNeedsRequest
impl Unpin for NotifyEVChargingNeedsRequest
impl UnwindSafe for NotifyEVChargingNeedsRequest
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