#[repr(u8)]pub enum LssState {
Waiting = 0,
Configuring = 1,
}Expand description
The possible LSS states
Variants§
Waiting = 0
The default state of a node.
Configuring = 1
The state of a node which has been “activated” and is ready for configuring or querying via LSS
Implementations§
Trait Implementations§
impl Copy for LssState
impl StructuralPartialEq for LssState
Auto Trait Implementations§
impl Freeze for LssState
impl RefUnwindSafe for LssState
impl Send for LssState
impl Sync for LssState
impl Unpin for LssState
impl UnwindSafe for LssState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more