pub struct BinanceErrorResponse {
pub code: i32,
pub msg: String,
}Expand description
Binance API error response
Fields§
§code: i32Error code
msg: StringError message
Trait Implementations§
Source§impl Clone for BinanceErrorResponse
impl Clone for BinanceErrorResponse
Source§fn clone(&self) -> BinanceErrorResponse
fn clone(&self) -> BinanceErrorResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BinanceErrorResponse
impl Debug for BinanceErrorResponse
Source§impl<'de> Deserialize<'de> for BinanceErrorResponse
impl<'de> Deserialize<'de> for BinanceErrorResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BinanceErrorResponse
impl RefUnwindSafe for BinanceErrorResponse
impl Send for BinanceErrorResponse
impl Sync for BinanceErrorResponse
impl Unpin for BinanceErrorResponse
impl UnwindSafe for BinanceErrorResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more