pub struct GetInstalledCertificateIdsResponse {
pub status: GetInstalledCertificateStatusEnumType,
pub certificate_hash_data_chain: Option<Vec<CertificateHashDataChainType>>,
pub status_info: Option<StatusInfoType>,
}Expand description
Response to a GetInstalledCertificateIDsRequest.
Fields§
§status: GetInstalledCertificateStatusEnumTypeCharging Station indicates if it can process therequest
certificate_hash_data_chain: Option<Vec<CertificateHashDataChainType>>The Charging Station includes the Certificateinformation for each available certificate.
status_info: Option<StatusInfoType>Detailed status information.
Trait Implementations§
Source§impl Clone for GetInstalledCertificateIdsResponse
impl Clone for GetInstalledCertificateIdsResponse
Source§fn clone(&self) -> GetInstalledCertificateIdsResponse
fn clone(&self) -> GetInstalledCertificateIdsResponse
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 Default for GetInstalledCertificateIdsResponse
impl Default for GetInstalledCertificateIdsResponse
Source§fn default() -> GetInstalledCertificateIdsResponse
fn default() -> GetInstalledCertificateIdsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetInstalledCertificateIdsResponse
impl<'de> Deserialize<'de> for GetInstalledCertificateIdsResponse
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 GetInstalledCertificateIdsResponse
impl PartialEq for GetInstalledCertificateIdsResponse
Source§fn eq(&self, other: &GetInstalledCertificateIdsResponse) -> bool
fn eq(&self, other: &GetInstalledCertificateIdsResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetInstalledCertificateIdsResponse
Auto Trait Implementations§
impl Freeze for GetInstalledCertificateIdsResponse
impl RefUnwindSafe for GetInstalledCertificateIdsResponse
impl Send for GetInstalledCertificateIdsResponse
impl Sync for GetInstalledCertificateIdsResponse
impl Unpin for GetInstalledCertificateIdsResponse
impl UnwindSafe for GetInstalledCertificateIdsResponse
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