pub struct GetDisplayMessagesRequest {
pub id: Option<Vec<i64>>,
pub request_id: i64,
pub priority: Option<MessagePriorityEnumType>,
pub state: Option<MessageStateEnumType>,
}
Expand description
GetCompositeScheduleRequest, sent by the CSMS to the Charging Station.
Fields
id: Option<Vec<i64>>
If provided the Charging Station shall returnDisplay Messages of the given ids. This field SHALL NOTcontain more ids than set inNumberOfDisplayMessages.maxLimit
request_id: i64
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
sourceimpl Clone for GetDisplayMessagesRequest
impl Clone for GetDisplayMessagesRequest
sourcefn clone(&self) -> GetDisplayMessagesRequest
fn clone(&self) -> GetDisplayMessagesRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for GetDisplayMessagesRequest
impl Debug for GetDisplayMessagesRequest
sourceimpl<'de> Deserialize<'de> for GetDisplayMessagesRequest
impl<'de> Deserialize<'de> for GetDisplayMessagesRequest
sourcefn 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
sourceimpl PartialEq<GetDisplayMessagesRequest> for GetDisplayMessagesRequest
impl PartialEq<GetDisplayMessagesRequest> for GetDisplayMessagesRequest
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &GetDisplayMessagesRequest) -> bool
fn ne(&self, other: &GetDisplayMessagesRequest) -> bool
This method tests for !=
.
sourceimpl Serialize for GetDisplayMessagesRequest
impl Serialize for GetDisplayMessagesRequest
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more