Struct serenity::model::VoiceState
[−]
[src]
pub struct VoiceState {
pub channel_id: Option<ChannelId>,
pub deaf: bool,
pub mute: bool,
pub self_deaf: bool,
pub self_mute: bool,
pub session_id: String,
pub suppress: bool,
pub token: Option<String>,
pub user_id: UserId,
}A user's state within a voice channel.
Fields
channel_id: Option<ChannelId>
deaf: bool
mute: bool
self_deaf: bool
self_mute: bool
session_id: String
suppress: bool
token: Option<String>
user_id: UserId
Trait Implementations
impl Clone for VoiceState[src]
fn clone(&self) -> VoiceState[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more