pub struct RemoteStopTransactionRequest {
pub transaction_id: i32,
}
Expand description
This contains the field definitions of the RemoteStopTransactionRequest PDU sent to Charge Point by Central System. See also Remote Stop Transaction
Fields§
§transaction_id: i32
Required. The identifier of the transaction which Charge Point is requested to stop.
Trait Implementations§
Source§impl Clone for RemoteStopTransactionRequest
impl Clone for RemoteStopTransactionRequest
Source§fn clone(&self) -> RemoteStopTransactionRequest
fn clone(&self) -> RemoteStopTransactionRequest
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 RemoteStopTransactionRequest
impl Debug for RemoteStopTransactionRequest
Source§impl Default for RemoteStopTransactionRequest
impl Default for RemoteStopTransactionRequest
Source§fn default() -> RemoteStopTransactionRequest
fn default() -> RemoteStopTransactionRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoteStopTransactionRequest
impl<'de> Deserialize<'de> for RemoteStopTransactionRequest
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 RemoteStopTransactionRequest
impl PartialEq for RemoteStopTransactionRequest
Source§fn eq(&self, other: &RemoteStopTransactionRequest) -> bool
fn eq(&self, other: &RemoteStopTransactionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RemoteStopTransactionRequest
Auto Trait Implementations§
impl Freeze for RemoteStopTransactionRequest
impl RefUnwindSafe for RemoteStopTransactionRequest
impl Send for RemoteStopTransactionRequest
impl Sync for RemoteStopTransactionRequest
impl Unpin for RemoteStopTransactionRequest
impl UnwindSafe for RemoteStopTransactionRequest
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