[][src]Struct spectacles_model::invite::Invite

pub struct Invite {
    pub code: String,
    pub guild: Guild,
    pub channel: Channel,
    pub approximate_presence_count: i32,
    pub approximate_member_count: i32,
}

Represents a code that when used, adds a user to a guild or group DM channel.

Fields

code: String

The ID of the invite code.

guild: Guild

The guild that the invite belongs to.

channel: Channel

The channel that the invite belongs to.

approximate_presence_count: i32

The approximate count of online members.

approximate_member_count: i32

The approximate count of total members.

Trait Implementations

impl Default for Invite[src]

impl Clone for Invite[src]

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

Performs copy-assignment from source. Read more

impl Debug for Invite[src]

impl Serialize for Invite[src]

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

Auto Trait Implementations

impl Send for Invite

impl Sync for Invite

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]