pub struct UpdateThread<'a> { /* private fields */ }
Expand description
Update a thread.
All fields are optional. The minimum length of the name is 1 UTF-16 characters and the maximum is 100 UTF-16 characters.
Implementations§
source§impl<'a> UpdateThread<'a>
impl<'a> UpdateThread<'a>
Set the forum thread’s applied tags.
sourcepub fn archived(self, archived: bool) -> Self
pub fn archived(self, archived: bool) -> Self
Set whether the thread is archived.
Requires that the user have SEND_MESSAGES
in the thread. However, if
the thread is locked, the user must have MANAGE_THREADS
.
sourcepub fn auto_archive_duration(
self,
auto_archive_duration: AutoArchiveDuration,
) -> Self
pub fn auto_archive_duration( self, auto_archive_duration: AutoArchiveDuration, ) -> Self
Set the thread’s auto archive duration.
Automatic archive durations are not locked behind the guild’s boost level.
sourcepub fn invitable(self, invitable: bool) -> Self
pub fn invitable(self, invitable: bool) -> Self
Whether non-moderators can add other non-moderators to a thread.
sourcepub fn locked(self, locked: bool) -> Self
pub fn locked(self, locked: bool) -> Self
Set whether the thread is locked.
If the thread is already locked, only users with MANAGE_THREADS
can
unlock it.
sourcepub fn name(self, name: &'a str) -> Self
pub fn name(self, name: &'a str) -> Self
Set the name of the thread.
Must be between 1 and 100 characters in length.
§Errors
Returns an error of type NameInvalid
if the name is invalid.
sourcepub fn rate_limit_per_user(self, rate_limit_per_user: u16) -> Self
pub fn rate_limit_per_user(self, rate_limit_per_user: u16) -> Self
Set the number of seconds that a user must wait before before they are able to send another message.
The minimum is 0 and the maximum is 21600. This is also known as “Slow Mode”. See Discord Docs/Channel Object.
§Errors
Returns an error of type RateLimitPerUserInvalid
if the name is
invalid.