pub enum DimensionType {
Energy,
MaxCurrent,
MinCurrent,
MaxPower,
MinPower,
ParkingTime,
ReservationTime,
Time,
}Expand description
The volume that has been consumed for a specific dimension during a charging period.
Variants§
Energy
Consumed energy in kWh.
MaxCurrent
The peak current, in ‘A’, during this period.
MinCurrent
The lowest current, in A, during this period.
MaxPower
The maximum power, in ‘kW’, reached during this period.
MinPower
The minimum power, in ‘kW’, reached during this period.
ParkingTime
The parking time, in hours, consumed in this period.
ReservationTime
The reservation time, in hours, consumed in this period.
Time
The charging time, in hours, consumed in this period.
Trait Implementations§
Source§impl Clone for DimensionType
impl Clone for DimensionType
Source§fn clone(&self) -> DimensionType
fn clone(&self) -> DimensionType
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 DimensionType
impl Debug for DimensionType
Source§impl PartialEq for DimensionType
impl PartialEq for DimensionType
impl Eq for DimensionType
impl StructuralPartialEq for DimensionType
Auto Trait Implementations§
impl Freeze for DimensionType
impl RefUnwindSafe for DimensionType
impl Send for DimensionType
impl Sync for DimensionType
impl Unpin for DimensionType
impl UnwindSafe for DimensionType
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