pub enum SignQueryError {
SerdeUrlencodedError(Error),
SecretKeyInvalidLength(InvalidLength),
}Variants§
SerdeUrlencodedError(Error)
SecretKeyInvalidLength(InvalidLength)
Trait Implementations§
Source§impl Debug for SignQueryError
impl Debug for SignQueryError
Source§impl Display for SignQueryError
impl Display for SignQueryError
Source§impl Error for SignQueryError
impl Error for SignQueryError
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 From<Error> for SignQueryError
impl From<Error> for SignQueryError
Source§impl From<InvalidLength> for SignQueryError
impl From<InvalidLength> for SignQueryError
Source§fn from(source: InvalidLength) -> Self
fn from(source: InvalidLength) -> Self
Converts to this type from the input type.
Source§impl From<SignQueryError> for ApiError
impl From<SignQueryError> for ApiError
Source§fn from(source: SignQueryError) -> Self
fn from(source: SignQueryError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SignQueryError
impl RefUnwindSafe for SignQueryError
impl Send for SignQueryError
impl Sync for SignQueryError
impl Unpin for SignQueryError
impl UnwindSafe for SignQueryError
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