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

pub struct ChannelCreateEvent {
    pub channel: Channel,
}

Event data for the channel creation event.

This is fired when:

Fields

The channel that was created.

Trait Implementations

impl Clone for ChannelCreateEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ChannelCreateEvent
[src]

Formats the value using the given formatter. Read more

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for ChannelCreateEvent
[src]

Serialize this value into the given Serde serializer. Read more

impl CacheUpdate for ChannelCreateEvent
[src]

The return type of an update. Read more

Updates the cache with the implementation.

Auto Trait Implementations