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

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

A guild or DM channel on Discord.

Fields

id: String

The channel ID of this channel.

kind: Option<ChannelType>

The type of channel.

guild_id: Option<String>

The guild ID of this channel.

position: i32

The position of this channel.

permission_overwrites: PermissionOverwrites

The explicit permission overwrites for members and roles.

name: String

The name of the channel.

topic: Option<String>

The topic of this channel.

nsfw: bool

Whether or not this channel is an NSFW channel.

last_message_id: Option<String>

The ID of the last message sent in this channel.

bitrate: i32

The bitrate of this channel.

user_limit: i32

The user limit, if voice.

rate_limit_per_user: i32

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

recipients: Vec<User>

The recepients, if DM.

icon: Option<String>

The channel's icon hash if any.

owner_id: String

The ID of the creator, if a DM.

application_id: String

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

parent_id: Option<String>

The ID of the parent category.

last_pin_timestamp: Option<DateTime<FixedOffset>>

When the last message was pinned.

Trait Implementations

impl Default for Channel[src]

impl Clone for Channel[src]

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

Performs copy-assignment from source. Read more

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, U> Into for T where
    U: From<T>, 
[src]

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

type Owned = T

impl<T> From for 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> 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]