pub struct BinanceError {
pub code: i32,
pub msg: SmartString,
}Expand description
Error response from Binance
Fields§
§code: i32Binance error code
msg: SmartStringError message description
Trait Implementations§
Source§impl Debug for BinanceError
impl Debug for BinanceError
Source§impl<'de> Deserialize<'de> for BinanceError
impl<'de> Deserialize<'de> for BinanceError
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 BinanceError
impl RefUnwindSafe for BinanceError
impl Send for BinanceError
impl Sync for BinanceError
impl Unpin for BinanceError
impl UnwindSafe for BinanceError
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