pub struct EVSE {
pub connector_id: Option<i64>,
pub custom_data: Option<CustomData>,
pub id: i64,
}Expand description
Electric Vehicle Supply Equipment
Fields§
§connector_id: Option<i64>An id to designate a specific connector (on an EVSE) by connector index number.
custom_data: Option<CustomData>§id: i64EVSE Identifier. This contains a number (> 0) designating an EVSE of the Charging Station.
Trait Implementations§
impl Eq for EVSE
impl StructuralPartialEq for EVSE
Auto Trait Implementations§
impl Freeze for EVSE
impl RefUnwindSafe for EVSE
impl Send for EVSE
impl Sync for EVSE
impl Unpin for EVSE
impl UnsafeUnpin for EVSE
impl UnwindSafe for EVSE
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