pub struct DeleteFollowup<'a> { /* private fields */ }
Expand description
Delete the original message, by its token.
This endpoint is not bound to the application’s global rate limit.
§Examples
use std::env;
use twilight_http::Client;
use twilight_model::id::Id;
let client = Client::new(env::var("DISCORD_TOKEN")?);
let application_id = Id::new(1);
client
.interaction(application_id)
.delete_followup("token here", Id::new(2))
.await?;
Trait Implementations§
source§impl IntoFuture for DeleteFollowup<'_>
impl IntoFuture for DeleteFollowup<'_>
source§type Output = Result<Response<EmptyBody>, Error>
type Output = Result<Response<EmptyBody>, Error>
The output that the future will produce on completion.
source§type IntoFuture = ResponseFuture<EmptyBody>
type IntoFuture = ResponseFuture<EmptyBody>
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 DeleteFollowup<'_>
impl TryIntoRequest for DeleteFollowup<'_>
Auto Trait Implementations§
impl<'a> Freeze for DeleteFollowup<'a>
impl<'a> !RefUnwindSafe for DeleteFollowup<'a>
impl<'a> Send for DeleteFollowup<'a>
impl<'a> Sync for DeleteFollowup<'a>
impl<'a> Unpin for DeleteFollowup<'a>
impl<'a> !UnwindSafe for DeleteFollowup<'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