pub struct GetGateway<'a> { /* private fields */ }
Expand description
Get information about the gateway, optionally with additional information detailing the number of shards to use and sessions remaining.
§Examples
Get the gateway connection URL without bot information:
use twilight_http::Client;
let client = Client::new("my token".to_owned());
let info = client.gateway().await?.model().await?;
Get the gateway connection URL with additional shard and session information, which requires specifying a bot token:
use twilight_http::Client;
let client = Client::new("my token".to_owned());
let info = client.gateway().authed().await?.model().await?;
println!("URL: {}", info.url);
println!("Recommended shards to use: {}", info.shards);
Implementations§
source§impl<'a> GetGateway<'a>
impl<'a> GetGateway<'a>
sourcepub const fn authed(self) -> GetGatewayAuthed<'a>
pub const fn authed(self) -> GetGatewayAuthed<'a>
Call to authenticate this request.
Returns additional information: the recommended number of shards to use, and information on the current session start limit.
Trait Implementations§
source§impl IntoFuture for GetGateway<'_>
impl IntoFuture for GetGateway<'_>
source§type Output = Result<Response<ConnectionInfo>, Error>
type Output = Result<Response<ConnectionInfo>, Error>
The output that the future will produce on completion.
source§type IntoFuture = ResponseFuture<ConnectionInfo>
type IntoFuture = ResponseFuture<ConnectionInfo>
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 GetGateway<'_>
impl TryIntoRequest for GetGateway<'_>
Auto Trait Implementations§
impl<'a> Freeze for GetGateway<'a>
impl<'a> !RefUnwindSafe for GetGateway<'a>
impl<'a> Send for GetGateway<'a>
impl<'a> Sync for GetGateway<'a>
impl<'a> Unpin for GetGateway<'a>
impl<'a> !UnwindSafe for GetGateway<'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