pub struct ClearDisplayMessageResponse {
pub status: ClearMessageStatusEnumType,
pub status_info: Option<StatusInfoType>,
}
Expand description
ClearDisplayMessageResponse, sent by the Charging Station to the CSMS in a response to a ClearDisplayMessageRequest
.
Fields§
§status: ClearMessageStatusEnumType
Returns whether the Charging Station has been able to remove the message.
status_info: Option<StatusInfoType>
Detailed status information.
Trait Implementations§
source§impl Clone for ClearDisplayMessageResponse
impl Clone for ClearDisplayMessageResponse
source§fn clone(&self) -> ClearDisplayMessageResponse
fn clone(&self) -> ClearDisplayMessageResponse
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 ClearDisplayMessageResponse
impl Debug for ClearDisplayMessageResponse
source§impl Default for ClearDisplayMessageResponse
impl Default for ClearDisplayMessageResponse
source§fn default() -> ClearDisplayMessageResponse
fn default() -> ClearDisplayMessageResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ClearDisplayMessageResponse
impl<'de> Deserialize<'de> for ClearDisplayMessageResponse
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 ClearDisplayMessageResponse
impl PartialEq for ClearDisplayMessageResponse
source§fn eq(&self, other: &ClearDisplayMessageResponse) -> bool
fn eq(&self, other: &ClearDisplayMessageResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ClearDisplayMessageResponse
Auto Trait Implementations§
impl Freeze for ClearDisplayMessageResponse
impl RefUnwindSafe for ClearDisplayMessageResponse
impl Send for ClearDisplayMessageResponse
impl Sync for ClearDisplayMessageResponse
impl Unpin for ClearDisplayMessageResponse
impl UnwindSafe for ClearDisplayMessageResponse
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