#[non_exhaustive]pub struct ThreadMetadata {
pub archived: bool,
pub auto_archive_duration: AutoArchiveDuration,
pub archive_timestamp: Option<Timestamp>,
pub locked: bool,
pub create_timestamp: Option<Timestamp>,
pub invitable: bool,
}
Expand description
A thread data.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.archived: bool
Whether the thread is archived.
auto_archive_duration: AutoArchiveDuration
Duration in minutes to automatically archive the thread after recent activity.
archive_timestamp: Option<Timestamp>
The last time the thread’s archive status was last changed; used for calculating recent activity.
locked: bool
When a thread is locked, only users with MANAGE_THREADS
permission can unarchive it.
create_timestamp: Option<Timestamp>
Timestamp when the thread was created.
Note: only populated for threads created after 2022-01-09
invitable: bool
Whether non-moderators can add other non-moderators to a thread.
Note: Only available on private threads.
Trait Implementations§
Source§impl Clone for ThreadMetadata
impl Clone for ThreadMetadata
Source§fn clone(&self) -> ThreadMetadata
fn clone(&self) -> ThreadMetadata
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ThreadMetadata
impl Debug for ThreadMetadata
Source§impl<'de> Deserialize<'de> for ThreadMetadata
impl<'de> Deserialize<'de> for ThreadMetadata
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
Source§impl Serialize for ThreadMetadata
impl Serialize for ThreadMetadata
impl Copy for ThreadMetadata
Auto Trait Implementations§
impl Freeze for ThreadMetadata
impl RefUnwindSafe for ThreadMetadata
impl Send for ThreadMetadata
impl Sync for ThreadMetadata
impl Unpin for ThreadMetadata
impl UnwindSafe for ThreadMetadata
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