1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//!
//! The Binance error response.
//!

use serde::Deserialize;

///
/// The Binance error response.
///
#[derive(Debug, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub struct Error {
    /// The Binance error code.
    pub code: i64,
    /// The Binance error message.
    pub msg: String,
}