pub enum MemberState {
Unjoined,
Joining,
Syncing,
Stable,
}Variants§
Unjoined
Not a member: no id, or ours was rejected.
Joining
JoinGroup is outstanding.
Syncing
SyncGroup is outstanding.
Stable
Assigned and heartbeating. The only state in which offsets may be committed.
Trait Implementations§
Source§impl Clone for MemberState
impl Clone for MemberState
Source§fn clone(&self) -> MemberState
fn clone(&self) -> MemberState
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 MemberState
Source§impl Debug for MemberState
impl Debug for MemberState
impl Eq for MemberState
Source§impl PartialEq for MemberState
impl PartialEq for MemberState
impl StructuralPartialEq for MemberState
Auto Trait Implementations§
impl Freeze for MemberState
impl RefUnwindSafe for MemberState
impl Send for MemberState
impl Sync for MemberState
impl Unpin for MemberState
impl UnsafeUnpin for MemberState
impl UnwindSafe for MemberState
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.