Struct twilight_http::request::GetUserApplicationInfo
source · pub struct GetUserApplicationInfo<'a> { /* private fields */ }
Implementations§
source§impl<'a> GetUserApplicationInfo<'a>
impl<'a> GetUserApplicationInfo<'a>
sourcepub fn exec(self) -> ResponseFuture<Application> ⓘ
👎Deprecated since 0.14.0: use .await
or into_future
instead
pub fn exec(self) -> ResponseFuture<Application> ⓘ
.await
or into_future
insteadExecute the request, returning a future resolving to a Response
.
Trait Implementations§
source§impl IntoFuture for GetUserApplicationInfo<'_>
impl IntoFuture for GetUserApplicationInfo<'_>
§type Output = Result<Response<Application>, Error>
type Output = Result<Response<Application>, Error>
The output that the future will produce on completion.
§type IntoFuture = ResponseFuture<Application>
type IntoFuture = ResponseFuture<Application>
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