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?;
Trait Implementations§
source§impl IntoFuture for DeleteResponse<'_>
impl IntoFuture for DeleteResponse<'_>
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 DeleteResponse<'_>
impl TryIntoRequest for DeleteResponse<'_>
Auto Trait Implementations§
impl<'a> Freeze for DeleteResponse<'a>
impl<'a> !RefUnwindSafe for DeleteResponse<'a>
impl<'a> Send for DeleteResponse<'a>
impl<'a> Sync for DeleteResponse<'a>
impl<'a> Unpin for DeleteResponse<'a>
impl<'a> !UnwindSafe for DeleteResponse<'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