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>

source

pub const fn applied_tags( self, applied_tags: Option<&'a [Id<TagMarker>]> ) -> Self

Set the forum thread’s applied tags.

source

pub const 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.

source

pub const 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.

source

pub const fn invitable(self, invitable: bool) -> Self

Whether non-moderators can add other non-moderators to a thread.

source

pub const 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.

source

pub fn name(self, name: &'a str) -> Result<Self, ChannelValidationError>

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.

source

pub const fn rate_limit_per_user( self, rate_limit_per_user: u16 ) -> Result<Self, ChannelValidationError>

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.

source

pub fn exec(self) -> ResponseFuture<Channel>

👎Deprecated since 0.14.0: use .await or into_future instead

Execute the request, returning a future resolving to a Response.

Trait Implementations§

source§

impl<'a> AuditLogReason<'a> for UpdateThread<'a>

source§

fn reason(self, reason: &'a str) -> Result<Self, ValidationError>

Attach an audit log reason to the request. Read more
source§

impl IntoFuture for UpdateThread<'_>

§

type Output = Result<Response<Channel>, Error>

The output that the future will produce on completion.
§

type IntoFuture = ResponseFuture<Channel>

Which kind of future are we turning this into?
source§

fn into_future(self) -> Self::IntoFuture

Creates a future from a value. Read more
source§

impl TryIntoRequest for UpdateThread<'_>

source§

fn try_into_request(self) -> Result<Request, Error>

Try to convert a request builder into a raw Request. Read more

Auto Trait Implementations§

§

impl<'a> !RefUnwindSafe for UpdateThread<'a>

§

impl<'a> Send for UpdateThread<'a>

§

impl<'a> Sync for UpdateThread<'a>

§

impl<'a> Unpin for UpdateThread<'a>

§

impl<'a> !UnwindSafe for UpdateThread<'a>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more