1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! //! The time GET response. //! use serde::Deserialize; /// /// The `https://www.binance.com/api/v3/time` GET response. /// #[derive(Debug, Deserialize)] #[serde(rename_all = "camelCase")] pub struct Response { /// The server time in milliseconds since Unix epoch. pub server_time: i64, }