Struct twilight_http::request::channel::invite::GetChannelInvites
source · pub struct GetChannelInvites<'a> { /* private fields */ }Expand description
Get the invites for a guild channel.
Requires the MANAGE_CHANNELS permission. This method only works if the
channel is a guild channel.
Implementations§
source§impl<'a> GetChannelInvites<'a>
impl<'a> GetChannelInvites<'a>
Trait Implementations§
source§impl IntoFuture for GetChannelInvites<'_>
impl IntoFuture for GetChannelInvites<'_>
§type Output = Result<Response<ListBody<Invite>>, Error>
type Output = Result<Response<ListBody<Invite>>, Error>
The output that the future will produce on completion.
§type IntoFuture = ResponseFuture<ListBody<Invite>>
type IntoFuture = ResponseFuture<ListBody<Invite>>
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