pub struct GetCertificateStatusResponse {
pub status: GetCertificateStatusEnumType,
pub ocsp_result: Option<String>,
pub status_info: Option<StatusInfoType>,
}
Expand description
GetCertificateStatusResponse, sent by the CSMS to the Charging Station.
Fields§
§status: GetCertificateStatusEnumType
This indicates whether the charging stationwas able to retrieve the OCSP certificate status.
ocsp_result: Option<String>
OCSPResponse class as defined in IETF RFC6960. DER encoded (as defined in IETF RFC 6960), andthen base64 encoded. MAY only be omitted when statusis not Accepted.
status_info: Option<StatusInfoType>
Detailed status information.
Trait Implementations§
source§impl Clone for GetCertificateStatusResponse
impl Clone for GetCertificateStatusResponse
source§fn clone(&self) -> GetCertificateStatusResponse
fn clone(&self) -> GetCertificateStatusResponse
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 GetCertificateStatusResponse
impl Debug for GetCertificateStatusResponse
source§impl Default for GetCertificateStatusResponse
impl Default for GetCertificateStatusResponse
source§fn default() -> GetCertificateStatusResponse
fn default() -> GetCertificateStatusResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GetCertificateStatusResponse
impl<'de> Deserialize<'de> for GetCertificateStatusResponse
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<GetCertificateStatusResponse> for GetCertificateStatusResponse
impl PartialEq<GetCertificateStatusResponse> for GetCertificateStatusResponse
source§fn eq(&self, other: &GetCertificateStatusResponse) -> bool
fn eq(&self, other: &GetCertificateStatusResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.