[][src]Struct serenity::model::invite::InviteUser

pub struct InviteUser {
    pub id: UserId,
    pub name: String,
    pub discriminator: u16,
    pub avatar: Option<String>,
    // some fields omitted
}

A minimal amount of information about the inviter (person who created the invite).

Fields

id: UserIdname: Stringdiscriminator: u16avatar: Option<String>

Methods from Deref<Target = UserId>

pub fn created_at(&self) -> DateTime<Utc>[src]

Retrieves the time that the Id was created at.

pub fn as_u64(&self) -> &u64[src]

Immutably borrow inner Id.

Trait Implementations

impl Clone for InviteUser[src]

impl Debug for InviteUser[src]

impl Deref for InviteUser[src]

InviteUser implements a Deref to UserId so it gains the convenience methods for converting it into a User instance.

type Target = UserId

The resulting type after dereferencing.

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

impl Serialize for InviteUser[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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]