[−][src]Struct spectacles_gateway::ShardManager
An organized group of Discord gateway shards.
Fields
token: StringThe 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]
token: String,
options: ManagerOptions<H>
) -> impl Future<Item = ShardManager<H>, Error = Error>
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]
U: From<T>,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self