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