Struct twilight_model::voice::VoiceState [−][src]
pub struct VoiceState {Show fields
pub channel_id: Option<ChannelId>,
pub deaf: bool,
pub guild_id: Option<GuildId>,
pub member: Option<Member>,
pub mute: bool,
pub self_deaf: bool,
pub self_mute: bool,
pub self_stream: bool,
pub session_id: String,
pub suppress: bool,
pub token: Option<String>,
pub user_id: UserId,
pub request_to_speak_timestamp: Option<String>,
}Fields
channel_id: Option<ChannelId>deaf: boolguild_id: Option<GuildId>member: Option<Member>mute: boolself_deaf: boolself_mute: boolself_stream: boolExpand description
Whether this user is streaming via “Go Live”.
session_id: Stringsuppress: booltoken: Option<String>user_id: UserIdrequest_to_speak_timestamp: Option<String>Trait Implementations
impl Clone for VoiceState[src]
impl Clone for VoiceState[src]fn clone(&self) -> 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]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for VoiceState[src]
impl Debug for VoiceState[src]impl<'de> Deserialize<'de> for VoiceState[src]
impl<'de> Deserialize<'de> for VoiceState[src]fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>[src]
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>[src]Deserialize this value from the given Serde deserializer. Read more
impl Hash for VoiceState[src]
impl Hash for VoiceState[src]impl PartialEq<VoiceState> for VoiceState[src]
impl PartialEq<VoiceState> for VoiceState[src]fn eq(&self, other: &VoiceState) -> bool[src]
fn eq(&self, other: &VoiceState) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &VoiceState) -> bool[src]
fn ne(&self, other: &VoiceState) -> bool[src]This method tests for !=.
impl Serialize for VoiceState[src]
impl Serialize for VoiceState[src]impl Eq for VoiceState[src]
impl StructuralEq for VoiceState[src]
impl StructuralPartialEq for VoiceState[src]
Auto Trait Implementations
impl RefUnwindSafe for VoiceState
impl Send for VoiceState
impl Sync for VoiceState
impl Unpin for VoiceState
impl UnwindSafe for VoiceState
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T[src]
impl<T> Instrument for T[src]fn instrument(self, span: Span) -> Instrumented<Self>[src]
fn instrument(self, span: Span) -> Instrumented<Self>[src]Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>[src]
fn in_current_span(self) -> Instrumented<Self>[src]impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,