pub struct GetDisplayMessagesRequest {
pub id: Option<Vec<i32>>,
pub request_id: i32,
pub priority: Option<MessagePriorityEnumType>,
pub state: Option<MessageStateEnumType>,
}
Expand description
GetCompositeScheduleRequest, sent by the CSMS to the Charging Station.
Fields§
§id: Option<Vec<i32>>
If provided the Charging Station shall returnDisplay Messages of the given ids. This field SHALL NOTcontain more ids than set inNumberOfDisplayMessages.maxLimit
request_id: i32
The Id of this request
priority: Option<MessagePriorityEnumType>
If provided the Charging Station shall returnDisplay Messages with the given priority only
state: Option<MessageStateEnumType>
If provided the Charging Station shall returnDisplay Messages with the given state only.
Trait Implementations§
source§impl Clone for GetDisplayMessagesRequest
impl Clone for GetDisplayMessagesRequest
source§fn clone(&self) -> GetDisplayMessagesRequest
fn clone(&self) -> GetDisplayMessagesRequest
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 GetDisplayMessagesRequest
impl Debug for GetDisplayMessagesRequest
source§impl Default for GetDisplayMessagesRequest
impl Default for GetDisplayMessagesRequest
source§fn default() -> GetDisplayMessagesRequest
fn default() -> GetDisplayMessagesRequest
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GetDisplayMessagesRequest
impl<'de> Deserialize<'de> for GetDisplayMessagesRequest
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 GetDisplayMessagesRequest
impl PartialEq for GetDisplayMessagesRequest
source§fn eq(&self, other: &GetDisplayMessagesRequest) -> bool
fn eq(&self, other: &GetDisplayMessagesRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetDisplayMessagesRequest
Auto Trait Implementations§
impl RefUnwindSafe for GetDisplayMessagesRequest
impl Send for GetDisplayMessagesRequest
impl Sync for GetDisplayMessagesRequest
impl Unpin for GetDisplayMessagesRequest
impl UnwindSafe for GetDisplayMessagesRequest
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