pub struct Channel {Show 18 fields
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>>,
}
Expand description
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§
Source§impl<'de> Deserialize<'de> for Channel
impl<'de> Deserialize<'de> for Channel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Channel
impl RefUnwindSafe for Channel
impl Send for Channel
impl Sync for Channel
impl Unpin for Channel
impl UnwindSafe for Channel
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more