Struct serenity::model::event::GuildMemberUpdateEvent[][src]

pub struct GuildMemberUpdateEvent {
    pub guild_id: GuildId,
    pub nick: Option<String>,
    pub roles: Vec<RoleId>,
    pub user: User,
}

Fields

Trait Implementations

impl Clone for GuildMemberUpdateEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GuildMemberUpdateEvent
[src]

Formats the value using the given formatter. Read more

impl CacheUpdate for GuildMemberUpdateEvent
[src]

The return type of an update. Read more

Updates the cache with the implementation.

Auto Trait Implementations