Struct serenity::model::guild::PartialMember[][src]

pub struct PartialMember {
    pub deaf: bool,
    pub joined_at: Option<DateTime<FixedOffset>>,
    pub mute: bool,
    pub roles: Vec<RoleId>,
}

A partial amount of data for a member.

This is used in Messages from Guilds.

Fields

Indicator of whether the member can hear in voice channels.

Timestamp representing the date when the member joined.

Indicator of whether the member can speak in voice channels.

Vector of Ids of Roles given to the member.

Trait Implementations

impl Clone for PartialMember
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PartialMember
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations