pub struct GetTransactionStatusRequest {
pub transaction_id: Option<String>,
}
Expand description
With this message, the CSMS can ask the Charging Station whether it has transaction-related messages waiting to be delivered to the CSMS. When a transactionId is provided, only messages for a specific transaction are asked for.
Fields§
§transaction_id: Option<String>
The Id of the transaction for which the status isrequested.
Trait Implementations§
source§impl Clone for GetTransactionStatusRequest
impl Clone for GetTransactionStatusRequest
source§fn clone(&self) -> GetTransactionStatusRequest
fn clone(&self) -> GetTransactionStatusRequest
Returns a copy 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 GetTransactionStatusRequest
impl Debug for GetTransactionStatusRequest
source§impl Default for GetTransactionStatusRequest
impl Default for GetTransactionStatusRequest
source§fn default() -> GetTransactionStatusRequest
fn default() -> GetTransactionStatusRequest
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GetTransactionStatusRequest
impl<'de> Deserialize<'de> for GetTransactionStatusRequest
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<GetTransactionStatusRequest> for GetTransactionStatusRequest
impl PartialEq<GetTransactionStatusRequest> for GetTransactionStatusRequest
source§fn eq(&self, other: &GetTransactionStatusRequest) -> bool
fn eq(&self, other: &GetTransactionStatusRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.