pub struct GatewayBotResponse {
pub url: String,
pub shards: u16,
pub session_start_limit: SessionStartLimit,
}Expand description
Response from GET /gateway/bot.
Fields§
§url: StringGateway WebSocket URL.
shards: u16Recommended number of shards.
session_start_limit: SessionStartLimitSession start limit information.
Trait Implementations§
Source§impl Clone for GatewayBotResponse
impl Clone for GatewayBotResponse
Source§fn clone(&self) -> GatewayBotResponse
fn clone(&self) -> GatewayBotResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GatewayBotResponse
impl Debug for GatewayBotResponse
Source§impl<'de> Deserialize<'de> for GatewayBotResponse
impl<'de> Deserialize<'de> for GatewayBotResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GatewayBotResponse
impl RefUnwindSafe for GatewayBotResponse
impl Send for GatewayBotResponse
impl Sync for GatewayBotResponse
impl Unpin for GatewayBotResponse
impl UnwindSafe for GatewayBotResponse
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