Struct twilight_http::request::application::interaction::DeleteResponse
source · pub struct DeleteResponse<'a> { /* private fields */ }Expand description
Delete a followup message to an interaction, by its token and message ID.
This endpoint is not bound to the application’s global rate limit.
Examples
use std::env;
use twilight_http::{request::AuditLogReason, 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_response("token here")
.await?;Implementations§
source§impl<'a> DeleteResponse<'a>
impl<'a> DeleteResponse<'a>
Trait Implementations§
source§impl IntoFuture for DeleteResponse<'_>
impl IntoFuture for DeleteResponse<'_>
§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