Update integers on some types

This commit is contained in:
kozabrada123 2023-05-05 18:37:52 +02:00
parent c57122a94b
commit 4446aef8e1
1 changed files with 4 additions and 4 deletions

View File

@ -830,7 +830,7 @@ impl WebSocketEvent for GatewayHello {}
#[derive(Debug, Default, Deserialize, Serialize)] #[derive(Debug, Default, Deserialize, Serialize)]
pub struct HelloData { pub struct HelloData {
pub heartbeat_interval: i32, pub heartbeat_interval: u128,
} }
impl WebSocketEvent for HelloData {} impl WebSocketEvent for HelloData {}
@ -838,7 +838,7 @@ impl WebSocketEvent for HelloData {}
#[derive(Debug, Default, Deserialize, Serialize)] #[derive(Debug, Default, Deserialize, Serialize)]
pub struct GatewayHeartbeat { pub struct GatewayHeartbeat {
pub op: u8, pub op: u8,
pub d: u64, pub d: Option<u64>,
} }
impl WebSocketEvent for GatewayHeartbeat {} impl WebSocketEvent for GatewayHeartbeat {}
@ -852,9 +852,9 @@ impl WebSocketEvent for GatewayHeartbeatAck {}
#[derive(Debug, Default, Deserialize, Serialize)] #[derive(Debug, Default, Deserialize, Serialize)]
pub struct GatewayPayload { pub struct GatewayPayload {
pub op: i32, pub op: u8,
pub d: Option<String>, pub d: Option<String>,
pub s: Option<i64>, pub s: Option<u64>,
pub t: Option<String>, pub t: Option<String>,
} }