Struct twilight_http::request::channel::webhook::UpdateWebhook [−][src]
pub struct UpdateWebhook<'a> { /* fields omitted */ }Expand description
Update a webhook by ID.
Implementations
Update a webhook by its ID.
Set the avatar of the webhook.
See Discord Docs/Image Data for more information. This must be a Data URI, in the form of
data:image/{type};base64,{data} where {type} is the image MIME type and {data} is the
base64-encoded image.
Move this webhook to a new channel.
pub fn exec(self) -> ResponseFuture<Webhook>ⓘNotable traits for ResponseFuture<T>impl<T: Unpin> Future for ResponseFuture<T> type Output = Result<Response<T>, Error>;
pub fn exec(self) -> ResponseFuture<Webhook>ⓘNotable traits for ResponseFuture<T>impl<T: Unpin> Future for ResponseFuture<T> type Output = Result<Response<T>, Error>;
Notable traits for ResponseFuture<T>
impl<T: Unpin> Future for ResponseFuture<T> type Output = Result<Response<T>, Error>;Execute the request, returning a future resolving to a Response.