[][src]Struct twilight_model::invite::InviteGuild

pub struct InviteGuild {
    pub banner: Option<String>,
    pub description: Option<String>,
    pub features: Vec<String>,
    pub icon: Option<String>,
    pub id: GuildId,
    pub name: String,
    pub splash: Option<String>,
    pub vanity_url_code: Option<String>,
    pub verification_level: VerificationLevel,
}

Fields

banner: Option<String>

Hash of the banner image.

description: Option<String>

Description used for guild discovery.

features: Vec<String>

List of features that the guild has had enabled.

icon: Option<String>

Hash of the icon image.

id: GuildId

ID of the guild.

name: String

Name of the guild.

splash: Option<String>

Hash of the splash image.

vanity_url_code: Option<String>

Vanity code unique to the guild for invites.

verification_level: VerificationLevel

Account verification level required to participate.

Trait Implementations

impl Clone for InviteGuild[src]

impl Debug for InviteGuild[src]

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

impl Eq for InviteGuild[src]

impl Hash for InviteGuild[src]

impl PartialEq<InviteGuild> for InviteGuild[src]

impl Serialize for InviteGuild[src]

impl StructuralEq for InviteGuild[src]

impl StructuralPartialEq for InviteGuild[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.