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 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 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
impl StructuralPartialEq for GetDisplayMessagesRequest
Auto Trait Implementations§
impl Freeze for GetDisplayMessagesRequest
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