[][src]Struct spectacles_gateway::ShardManager

pub struct ShardManager<H: EventHandler + Send + Sync + 'static> {
    pub token: String,
    pub options: Option<ManagerOptions<H>>,
    pub shards: Arc<RwLock<ShardMap>>,
    // some fields omitted
}

An organized group of Discord gateway shards.

Fields

token: String

The token that this shard uses to connect to the Discord API.

options: Option<ManagerOptions<H>>

The options used to configure this shard manager.

shards: Arc<RwLock<ShardMap>>

A collection of shards that have been spawned.

Methods

impl<H: EventHandler + Send + Sync + 'static> ShardManager<H>[src]

pub fn new(
    token: String,
    options: ManagerOptions<H>
) -> impl Future<Item = ShardManager<H>, Error = Error>
[src]

Creates a new cluster, with the provided Discord API token.

pub fn begin_spawn(self)[src]

Spawns shards up to the specified amount and identifies them with Discord.

Auto Trait Implementations

impl<H> Send for ShardManager<H>

impl<H> Sync for ShardManager<H>

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self