pub enum RegistrationStatus {
Accepted,
Pending,
Rejected,
}
Expand description
From OCPP Specification
Result of registration in response to BootNotification.req.
Variants
Accepted
From OCPP Specification
Charge point is accepted by Central System.
Pending
From OCPP Specification
Central System is not yet ready to accept the Charge Point. Central System may send messages to retrieve information or prepare the Charge Point.
Rejected
From OCPP Specification
Charge point is not accepted by Central System. This may happen when the Charge Point id is not known by Central System.
Trait Implementations
sourceimpl Clone for RegistrationStatus
impl Clone for RegistrationStatus
sourcefn clone(&self) -> RegistrationStatus
fn clone(&self) -> RegistrationStatus
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 RegistrationStatus
impl Debug for RegistrationStatus
sourceimpl<'de> Deserialize<'de> for RegistrationStatus
impl<'de> Deserialize<'de> for RegistrationStatus
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 Serialize for RegistrationStatus
impl Serialize for RegistrationStatus
impl StructuralPartialEq for RegistrationStatus
Auto Trait Implementations
impl RefUnwindSafe for RegistrationStatus
impl Send for RegistrationStatus
impl Sync for RegistrationStatus
impl Unpin for RegistrationStatus
impl UnwindSafe for RegistrationStatus
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)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more