pub enum BehaviourState {
Created,
Valid,
Ready,
Connected,
}
Expand description
The state of a behaviour.
Variants§
Created
The behaviour has been created.
Valid
The behaviour has been validated.
Ready
The behaviour is initialized but not connected.
Connected
The behaviour is connected.
Trait Implementations§
Source§impl Clone for BehaviourState
impl Clone for BehaviourState
Source§fn clone(&self) -> BehaviourState
fn clone(&self) -> BehaviourState
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 BehaviourState
impl Debug for BehaviourState
Source§impl PartialEq for BehaviourState
impl PartialEq for BehaviourState
impl Copy for BehaviourState
impl Eq for BehaviourState
impl StructuralPartialEq for BehaviourState
Auto Trait Implementations§
impl Freeze for BehaviourState
impl RefUnwindSafe for BehaviourState
impl Send for BehaviourState
impl Sync for BehaviourState
impl Unpin for BehaviourState
impl UnwindSafe for BehaviourState
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
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