pub struct CreateThreadFromMessage<'a> { /* private fields */ }
Expand description
Create a new thread from an existing message.
When called on a GuildText
channel, this creates a
PublicThread
.
When called on a GuildAnnouncement
channel, this creates a AnnouncementThread
.
This request does not work when called on a GuildForum
channel.
Automatic archive durations are not locked behind the guild’s boost level.
The thread’s ID will be the same as its parent message. This ensures only one thread can be created per message.
Implementations§
source§impl<'a> CreateThreadFromMessage<'a>
impl<'a> CreateThreadFromMessage<'a>
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.
Trait Implementations§
source§impl IntoFuture for CreateThreadFromMessage<'_>
impl IntoFuture for CreateThreadFromMessage<'_>
source§type Output = Result<Response<Channel>, Error>
type Output = Result<Response<Channel>, Error>
The output that the future will produce on completion.
source§type IntoFuture = ResponseFuture<Channel>
type IntoFuture = ResponseFuture<Channel>
Which kind of future are we turning this into?
source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
source§impl TryIntoRequest for CreateThreadFromMessage<'_>
impl TryIntoRequest for CreateThreadFromMessage<'_>
Auto Trait Implementations§
impl<'a> Freeze for CreateThreadFromMessage<'a>
impl<'a> !RefUnwindSafe for CreateThreadFromMessage<'a>
impl<'a> Send for CreateThreadFromMessage<'a>
impl<'a> Sync for CreateThreadFromMessage<'a>
impl<'a> Unpin for CreateThreadFromMessage<'a>
impl<'a> !UnwindSafe for CreateThreadFromMessage<'a>
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