[][src]Struct spectacles_model::channel::Channel

pub struct Channel {
    pub id: Snowflake,
    pub kind: Option<ChannelType>,
    pub guild_id: Option<Snowflake>,
    pub position: Option<i32>,
    pub permission_overwrites: Option<Vec<PermissionOverwrites>>,
    pub name: Option<String>,
    pub topic: Option<String>,
    pub nsfw: Option<bool>,
    pub last_message_id: Option<Snowflake>,
    pub bitrate: Option<i32>,
    pub user_limit: Option<i32>,
    pub rate_limit_per_user: Option<i32>,
    pub recipients: Option<Vec<User>>,
    pub icon: Option<String>,
    pub owner_id: Option<Snowflake>,
    pub application_id: Option<Snowflake>,
    pub parent_id: Option<Snowflake>,
    pub last_pin_timestamp: Option<DateTime<FixedOffset>>,
}

A guild or DM channel on Discord.

Fields

id: Snowflake

The channel ID of this channel.

kind: Option<ChannelType>

The type of channel.

guild_id: Option<Snowflake>

The guild ID of this channel.

position: Option<i32>

The position of this channel.

permission_overwrites: Option<Vec<PermissionOverwrites>>

The explicit permission overwrites for members and roles.

name: Option<String>

The name of the channel.

topic: Option<String>

The topic of this channel.

nsfw: Option<bool>

Whether or not this channel is an NSFW channel.

last_message_id: Option<Snowflake>

The ID of the last message sent in this channel.

bitrate: Option<i32>

The bitrate of this channel.

user_limit: Option<i32>

The user limit, if voice.

rate_limit_per_user: Option<i32>

The cooldown between sending messages in this channel, in seconds.

recipients: Option<Vec<User>>

The recepients, if DM.

icon: Option<String>

The channel's icon hash if any.

owner_id: Option<Snowflake>

The ID of the creator, if a DM.

application_id: Option<Snowflake>

The application ID, if the channel was created by a bot.

parent_id: Option<Snowflake>

The ID of the parent category.

last_pin_timestamp: Option<DateTime<FixedOffset>>

When the last message was pinned.

Trait Implementations

impl ToString for Channel[src]

impl Clone for Channel[src]

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

Performs copy-assignment from source. Read more

impl Default for Channel[src]

impl Debug for Channel[src]

impl Serialize for Channel[src]

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

Auto Trait Implementations

impl Send for Channel

impl Sync for Channel

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<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> Any for T where
    T: 'static + ?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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]