Struct twilight_http::request::application::interaction::DeleteFollowup
source · 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?;Implementations§
source§impl<'a> DeleteFollowup<'a>
impl<'a> DeleteFollowup<'a>
Trait Implementations§
source§impl IntoFuture for DeleteFollowup<'_>
impl IntoFuture for DeleteFollowup<'_>
§type Output = Result<Response<EmptyBody>, Error>
type Output = Result<Response<EmptyBody>, Error>
The output that the future will produce on completion.
§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