pub struct CertificateSignedResponse {
pub status: CertificateSignedStatusEnumType,
pub status_info: Option<StatusInfoType>,
}
Expand description
CertificateSignedResponse
, sent by the Charging Station to the CSMS in response to a CertificateSignedRequest
.
Fields§
§status: CertificateSignedStatusEnumType
Returns whether certificate signing has been accepted, otherwise rejected.
status_info: Option<StatusInfoType>
Detailed status information.
Trait Implementations§
Source§impl Clone for CertificateSignedResponse
impl Clone for CertificateSignedResponse
Source§fn clone(&self) -> CertificateSignedResponse
fn clone(&self) -> CertificateSignedResponse
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 CertificateSignedResponse
impl Debug for CertificateSignedResponse
Source§impl Default for CertificateSignedResponse
impl Default for CertificateSignedResponse
Source§fn default() -> CertificateSignedResponse
fn default() -> CertificateSignedResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CertificateSignedResponse
impl<'de> Deserialize<'de> for CertificateSignedResponse
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
impl StructuralPartialEq for CertificateSignedResponse
Auto Trait Implementations§
impl Freeze for CertificateSignedResponse
impl RefUnwindSafe for CertificateSignedResponse
impl Send for CertificateSignedResponse
impl Sync for CertificateSignedResponse
impl Unpin for CertificateSignedResponse
impl UnwindSafe for CertificateSignedResponse
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