//!//! The Binance API v3 HTTP response.
//!useserde::Deserialize;usecrate::http_api_v3::data::error::Error as ResponseError;////// The Binance API v3 HTTP response.
///#[derive(Debug, Deserialize, Clone)]#[serde(untagged)]pubenumResponse<T> {/// The successful response.
Ok(T),/// The error response.
Error(ResponseError),}