pub enum BinanceAuthError {
IoError(Error),
CryptoError(String),
ConfigError(String),
}Variants§
Trait Implementations§
Source§impl Debug for BinanceAuthError
impl Debug for BinanceAuthError
Source§impl Display for BinanceAuthError
impl Display for BinanceAuthError
Source§impl Error for BinanceAuthError
impl Error for BinanceAuthError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl<T> From<BinanceAuthError> for Error<T>
impl<T> From<BinanceAuthError> for Error<T>
Source§fn from(e: BinanceAuthError) -> Self
fn from(e: BinanceAuthError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for BinanceAuthError
impl From<Error> for BinanceAuthError
Source§impl From<Error> for BinanceAuthError
impl From<Error> for BinanceAuthError
Source§fn from(err: SignatureError) -> Self
fn from(err: SignatureError) -> Self
Converts to this type from the input type.
Source§impl From<ErrorStack> for BinanceAuthError
impl From<ErrorStack> for BinanceAuthError
Source§fn from(err: ErrorStack) -> Self
fn from(err: ErrorStack) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BinanceAuthError
impl !RefUnwindSafe for BinanceAuthError
impl Send for BinanceAuthError
impl Sync for BinanceAuthError
impl Unpin for BinanceAuthError
impl !UnwindSafe for BinanceAuthError
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