1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//! Structures for interfacing with Discord's voice related features.
use crate::guild::GuildMember;
use crate::snowflake::Snowflake;

/// Represents a user's voice connection status.
#[derive(Serialize, Deserialize, Debug, Clone, Default)]
pub struct VoiceState {
    /// The guild ID of the guild this voice state belongs to.
    #[serde(default)]
    pub guild_id: Snowflake,
    /// The channel ID of the channel the user is connected to.
    pub channel_id: Option<Snowflake>,
    /// The user ID of the user this voice state belongs to.
    pub user_id: Snowflake,
    /// The guild member that this voice state belongs to.
    #[serde(default)]
    pub member: GuildMember,
    /// The session ID of this voice state.
    pub session_id: String,
    /// Whether or not the user is deafened on the server.
    pub deaf: bool,
    /// Whether or not the user is muted on the server.
    pub mute: bool,
    /// Whether or not the user is locally deaf.
    pub self_deaf: bool,
    /// Whether or not the user is locally muted.
    pub self_mute: bool,
    /// Whether or not the user was muted by the current user.
    pub suppress: bool
}

/// Represents a Discord voice region.
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct VoiceRegion {
    /// The ID of this voice region.
    pub id: String,
    /// The name of this voice region.
    pub name: String,
    /// Whether or not this server is a VIP-only server.
    pub vip: bool,
    /// Whetehr or not this region is the closest to the user's client.
    pub optimal: bool,
    /// Whether or not this voice region has been deprecated.
    pub deprecated: bool,
    /// Whether or not this is a custom voice region.
    pub custom: bool
}