pub struct ClearChargingProfile<CustomDataType = NoCustomData> {
pub charging_profile_purpose: Option<ChargingProfilePurposeEnum>,
pub custom_data: Option<CustomDataType>,
pub evse_id: Option<i64>,
pub stack_level: Option<i64>,
}Expand description
Charging_ Profile urn:x-oca:ocpp:uid:2:233255 A ChargingProfile consists of a ChargingSchedule, describing the amount of power or current that can be delivered per time interval.
Fields§
§charging_profile_purpose: Option<ChargingProfilePurposeEnum>§custom_data: Option<CustomDataType>§evse_id: Option<i64>Identified_ Object. MRID. Numeric_ Identifier urn:x-enexis:ecdm:uid:1:569198 Specifies the id of the EVSE for which to clear charging profiles. An evseId of zero (0) specifies the charging profile for the overall Charging Station. Absence of this parameter means the clearing applies to all charging profiles that match the other criteria in the request.
stack_level: Option<i64>Charging_ Profile. Stack_ Level. Counter urn:x-oca:ocpp:uid:1:569230 Specifies the stackLevel for which charging profiles will be cleared, if they meet the other criteria in the request.
Trait Implementations§
Source§impl<CustomDataType: Clone> Clone for ClearChargingProfile<CustomDataType>
impl<CustomDataType: Clone> Clone for ClearChargingProfile<CustomDataType>
Source§fn clone(&self) -> ClearChargingProfile<CustomDataType>
fn clone(&self) -> ClearChargingProfile<CustomDataType>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<CustomDataType: Debug> Debug for ClearChargingProfile<CustomDataType>
impl<CustomDataType: Debug> Debug for ClearChargingProfile<CustomDataType>
Source§impl<'de, CustomDataType> Deserialize<'de> for ClearChargingProfile<CustomDataType>where
CustomDataType: Deserialize<'de>,
impl<'de, CustomDataType> Deserialize<'de> for ClearChargingProfile<CustomDataType>where
CustomDataType: Deserialize<'de>,
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
impl<CustomDataType: Eq> Eq for ClearChargingProfile<CustomDataType>
Source§impl<CustomDataType: PartialEq> PartialEq for ClearChargingProfile<CustomDataType>
impl<CustomDataType: PartialEq> PartialEq for ClearChargingProfile<CustomDataType>
Source§impl<CustomDataType> Serialize for ClearChargingProfile<CustomDataType>where
CustomDataType: Serialize,
impl<CustomDataType> Serialize for ClearChargingProfile<CustomDataType>where
CustomDataType: Serialize,
impl<CustomDataType: PartialEq> StructuralPartialEq for ClearChargingProfile<CustomDataType>
Source§impl<CustomDataType> Validate for ClearChargingProfile<CustomDataType>
Available on crate feature validate only.
impl<CustomDataType> Validate for ClearChargingProfile<CustomDataType>
Available on crate feature
validate only.Auto Trait Implementations§
impl<CustomDataType> Freeze for ClearChargingProfile<CustomDataType>where
CustomDataType: Freeze,
impl<CustomDataType> RefUnwindSafe for ClearChargingProfile<CustomDataType>where
CustomDataType: RefUnwindSafe,
impl<CustomDataType> Send for ClearChargingProfile<CustomDataType>where
CustomDataType: Send,
impl<CustomDataType> Sync for ClearChargingProfile<CustomDataType>where
CustomDataType: Sync,
impl<CustomDataType> Unpin for ClearChargingProfile<CustomDataType>where
CustomDataType: Unpin,
impl<CustomDataType> UnsafeUnpin for ClearChargingProfile<CustomDataType>where
CustomDataType: UnsafeUnpin,
impl<CustomDataType> UnwindSafe for ClearChargingProfile<CustomDataType>where
CustomDataType: UnwindSafe,
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