pub enum NodeLifecycleState {
Boot,
Unprovisioned,
ProvisionedOffline,
TcpOnline,
BleRecovery,
FailureReconnect,
}Variants§
Trait Implementations§
Source§impl Clone for NodeLifecycleState
impl Clone for NodeLifecycleState
Source§fn clone(&self) -> NodeLifecycleState
fn clone(&self) -> NodeLifecycleState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for NodeLifecycleState
Source§impl Debug for NodeLifecycleState
impl Debug for NodeLifecycleState
impl Eq for NodeLifecycleState
Source§impl PartialEq for NodeLifecycleState
impl PartialEq for NodeLifecycleState
Source§fn eq(&self, other: &NodeLifecycleState) -> bool
fn eq(&self, other: &NodeLifecycleState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NodeLifecycleState
Auto Trait Implementations§
impl Freeze for NodeLifecycleState
impl RefUnwindSafe for NodeLifecycleState
impl Send for NodeLifecycleState
impl Sync for NodeLifecycleState
impl Unpin for NodeLifecycleState
impl UnsafeUnpin for NodeLifecycleState
impl UnwindSafe for NodeLifecycleState
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