[][src]Struct serenity::client::bridge::voice::ClientVoiceManager

pub struct ClientVoiceManager { /* fields omitted */ }

Implementations

impl ClientVoiceManager[src]

pub fn new(shard_count: u64, user_id: UserId) -> Self[src]

pub fn get<G: Into<GuildId>>(&self, guild_id: G) -> Option<&Handler>[src]

pub fn get_mut<G: Into<GuildId>>(&mut self, guild_id: G) -> Option<&mut Handler>[src]

pub fn join<C, G>(&mut self, guild_id: G, channel_id: C) -> Option<&mut Handler> where
    C: Into<ChannelId>,
    G: Into<GuildId>, 
[src]

Refer to Manager::join.

This is a shortcut to retrieving the inner Manager and then calling its join method.

pub fn leave<G: Into<GuildId>>(&mut self, guild_id: G) -> Option<()>[src]

Refer to Manager::leave.

This is a shortcut to retrieving the inner Manager and then calling its leave method.

pub fn remove<G: Into<GuildId>>(&mut self, guild_id: G) -> Option<()>[src]

Refer to Manager::remove.

This is a shortcut to retrieving the inner Manager and then calling its remove method.

pub fn set(&mut self, shard_id: u64, sender: Sender<InterMessage>)[src]

pub fn manager_get(&self, shard_id: u64) -> Option<&Manager>[src]

pub fn manager_get_mut(&mut self, shard_id: u64) -> Option<&mut Manager>[src]

pub fn manager_remove(&mut self, shard_id: u64) -> Option<Manager>[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]