pub struct UnlockConnectorRequest {
pub connector_id: i64,
pub custom_data: Option<CustomData>,
pub evse_id: i64,
}Fields§
§connector_id: i64This contains the identifier of the connector that needs to be unlocked.
custom_data: Option<CustomData>§evse_id: i64This contains the identifier of the EVSE for which a connector needs to be unlocked.
Trait Implementations§
Source§impl Clone for UnlockConnectorRequest
impl Clone for UnlockConnectorRequest
Source§fn clone(&self) -> UnlockConnectorRequest
fn clone(&self) -> UnlockConnectorRequest
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 Debug for UnlockConnectorRequest
impl Debug for UnlockConnectorRequest
impl Eq for UnlockConnectorRequest
Source§impl PartialEq for UnlockConnectorRequest
impl PartialEq for UnlockConnectorRequest
impl StructuralPartialEq for UnlockConnectorRequest
Auto Trait Implementations§
impl Freeze for UnlockConnectorRequest
impl RefUnwindSafe for UnlockConnectorRequest
impl Send for UnlockConnectorRequest
impl Sync for UnlockConnectorRequest
impl Unpin for UnlockConnectorRequest
impl UnsafeUnpin for UnlockConnectorRequest
impl UnwindSafe for UnlockConnectorRequest
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