pub struct DeleteCertificateResponse {
pub status: DeleteCertificateStatusEnumType,
pub status_info: Option<StatusInfoType>,
}
Expand description
Response to a DeleteCertificateRequest.
Fields§
§status: DeleteCertificateStatusEnumType
Charging Station indicates if it can process the request.
status_info: Option<StatusInfoType>
Detailed status information.
Trait Implementations§
source§impl Clone for DeleteCertificateResponse
impl Clone for DeleteCertificateResponse
source§fn clone(&self) -> DeleteCertificateResponse
fn clone(&self) -> DeleteCertificateResponse
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 DeleteCertificateResponse
impl Debug for DeleteCertificateResponse
source§impl Default for DeleteCertificateResponse
impl Default for DeleteCertificateResponse
source§fn default() -> DeleteCertificateResponse
fn default() -> DeleteCertificateResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DeleteCertificateResponse
impl<'de> Deserialize<'de> for DeleteCertificateResponse
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 DeleteCertificateResponse
impl PartialEq for DeleteCertificateResponse
source§fn eq(&self, other: &DeleteCertificateResponse) -> bool
fn eq(&self, other: &DeleteCertificateResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteCertificateResponse
Auto Trait Implementations§
impl Freeze for DeleteCertificateResponse
impl RefUnwindSafe for DeleteCertificateResponse
impl Send for DeleteCertificateResponse
impl Sync for DeleteCertificateResponse
impl Unpin for DeleteCertificateResponse
impl UnwindSafe for DeleteCertificateResponse
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