#[non_exhaustive]pub enum ConnectionStage {
Connected,
Connecting,
Disconnected,
Handshake,
Identifying,
Resuming,
}
Expand description
Indicates the current connection stage of a Shard
.
This can be useful for knowing which shards are currently “down”/“up”.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Connected
Indicator that the Shard
is normally connected and is not in, e.g., a resume phase.
Connecting
Indicator that the Shard
is connecting and is in, e.g., a resume phase.
Disconnected
Indicator that the Shard
is fully disconnected and is not in a reconnecting phase.
Handshake
Indicator that the Shard
is currently initiating a handshake.
Identifying
Indicator that the Shard
has sent an IDENTIFY packet and is awaiting a READY packet.
Resuming
Indicator that the Shard
has sent a RESUME packet and is awaiting a RESUMED packet.
Implementations§
Source§impl ConnectionStage
impl ConnectionStage
Sourcepub fn is_connecting(self) -> bool
pub fn is_connecting(self) -> bool
Whether the stage is a form of connecting.
This will return true
on:
All other variants will return false
.
§Examples
Assert that ConnectionStage::Identifying
is a connecting stage:
use serenity::gateway::ConnectionStage;
assert!(ConnectionStage::Identifying.is_connecting());
Assert that ConnectionStage::Connected
is not a connecting stage:
use serenity::gateway::ConnectionStage;
assert!(!ConnectionStage::Connected.is_connecting());
Trait Implementations§
Source§impl Clone for ConnectionStage
impl Clone for ConnectionStage
Source§fn clone(&self) -> ConnectionStage
fn clone(&self) -> ConnectionStage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ConnectionStage
impl Debug for ConnectionStage
Source§impl Display for ConnectionStage
impl Display for ConnectionStage
Source§impl Hash for ConnectionStage
impl Hash for ConnectionStage
Source§impl Ord for ConnectionStage
impl Ord for ConnectionStage
Source§fn cmp(&self, other: &ConnectionStage) -> Ordering
fn cmp(&self, other: &ConnectionStage) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for ConnectionStage
impl PartialEq for ConnectionStage
Source§impl PartialOrd for ConnectionStage
impl PartialOrd for ConnectionStage
impl Copy for ConnectionStage
impl Eq for ConnectionStage
impl StructuralPartialEq for ConnectionStage
Auto Trait Implementations§
impl Freeze for ConnectionStage
impl RefUnwindSafe for ConnectionStage
impl Send for ConnectionStage
impl Sync for ConnectionStage
impl Unpin for ConnectionStage
impl UnwindSafe for ConnectionStage
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
Source§impl<T> CloneDebuggableStorage for Twhere
T: DebuggableStorage + Clone,
impl<T> CloneDebuggableStorage for Twhere
T: DebuggableStorage + Clone,
fn clone_storage(&self) -> Box<dyn CloneDebuggableStorage>
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> CloneableStorage for T
impl<T> CloneableStorage for T
fn clone_storage(&self) -> Box<dyn CloneableStorage>
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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
key
and return true
if they are equal.