//!//! The Binance Exchange API v2 HTTP response.
//!useserde::Deserialize;////// The Binance Exchange API v2 HTTP response.
///#[derive(Debug, Deserialize, Clone)]pubstructResponse<T>{/// The response code.
pubcode: String,
/// The response message. Usually `null`.
pubmessage:Option<String>,
/// The response message detail. Usually `null`.
pubmessage_detail:Option<String>,
/// The response data. May be `null` if requested by the symbol name.
pubdata:Option<T>,
/// The response status.
pubsuccess:bool,
}