Struct twilight_http::request::guild::sticker::GetGuildSticker [−][src]
pub struct GetGuildSticker<'a> { /* fields omitted */ }Expand description
Returns a guild sticker by the guild’s ID and the sticker’s ID.
Examples
use twilight_http::Client;
use twilight_model::{
channel::message::sticker::StickerId,
id::GuildId,
};
let client = Client::new("my token".to_owned());
let guild_id = GuildId::new(1).expect("non zero");
let sticker_id = StickerId::new(2).expect("non zero");
let sticker = client
.guild_sticker(guild_id, sticker_id)
.exec()
.await?
.model()
.await?;
println!("{:#?}", sticker);Implementations
pub fn exec(self) -> ResponseFuture<Sticker>ⓘNotable traits for ResponseFuture<T>impl<T: Unpin> Future for ResponseFuture<T> type Output = Result<Response<T>, Error>;
pub fn exec(self) -> ResponseFuture<Sticker>ⓘ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.
Auto Trait Implementations
impl<'a> !RefUnwindSafe for GetGuildSticker<'a>
impl<'a> Send for GetGuildSticker<'a>
impl<'a> Sync for GetGuildSticker<'a>
impl<'a> Unpin for GetGuildSticker<'a>
impl<'a> !UnwindSafe for GetGuildSticker<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more