[][src]Struct spectacles_model::voice::VoiceRegion

pub struct VoiceRegion {
    pub id: String,
    pub name: String,
    pub vip: bool,
    pub optimal: bool,
    pub deprecated: bool,
    pub custom: bool,
}

Represents a Discord voice region.

Fields

id: String

The ID of this voice region.

name: String

The name of this voice region.

vip: bool

Whether or not this server is a VIP-only server.

optimal: bool

Whetehr or not this region is the closest to the user's client.

deprecated: bool

Whether or not this voice region has been deprecated.

custom: bool

Whether or not this is a custom voice region.

Trait Implementations

impl Clone for VoiceRegion[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for VoiceRegion[src]

impl Serialize for VoiceRegion[src]

impl<'de> Deserialize<'de> for VoiceRegion[src]

Auto Trait Implementations

impl Send for VoiceRegion

impl Sync for VoiceRegion

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]