Enum rust_ocpp::v1_6::types::UpdateStatus
source · pub enum UpdateStatus {
Accepted,
Failed,
NotSupported,
VersionMismatch,
}
Expand description
Type of update for a SendLocalListRequest
Variants§
Accepted
Local Authorization List successfully updated.
Failed
Failed to update the Local Authorization List.
NotSupported
Update of Local Authorization List is not supported by Charge Point.
VersionMismatch
Version number in the request for a differential update is less or equal then version number of current list.
Trait Implementations§
source§impl Clone for UpdateStatus
impl Clone for UpdateStatus
source§fn clone(&self) -> UpdateStatus
fn clone(&self) -> UpdateStatus
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 UpdateStatus
impl Debug for UpdateStatus
source§impl Default for UpdateStatus
impl Default for UpdateStatus
source§fn default() -> UpdateStatus
fn default() -> UpdateStatus
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for UpdateStatus
impl<'de> Deserialize<'de> for UpdateStatus
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 UpdateStatus
impl PartialEq for UpdateStatus
source§fn eq(&self, other: &UpdateStatus) -> bool
fn eq(&self, other: &UpdateStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for UpdateStatus
impl Serialize for UpdateStatus
impl StructuralPartialEq for UpdateStatus
Auto Trait Implementations§
impl Freeze for UpdateStatus
impl RefUnwindSafe for UpdateStatus
impl Send for UpdateStatus
impl Sync for UpdateStatus
impl Unpin for UpdateStatus
impl UnwindSafe for UpdateStatus
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