pub enum EncodingError {
Other(&'static str),
OutOfRange,
Der(Error),
TooLarge,
Bug(Bug),
}Expand description
An error returned when a signature’s encoding is invalid.
Variants§
Other(&'static str)
An unknown or internal error has occurred.
OutOfRange
Either r or s are too large.
Der(Error)
Unable to parse an ASN.1 DER encoded signature.
TooLarge
The input is too large.
Bug(Bug)
An implementaion error.
Trait Implementations§
Source§impl Debug for EncodingError
impl Debug for EncodingError
Source§impl Display for EncodingError
impl Display for EncodingError
Source§impl Error for EncodingError
impl Error for EncodingError
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 From<Bug> for EncodingError
impl From<Bug> for EncodingError
Source§impl From<EncodingError> for ImportError
impl From<EncodingError> for ImportError
Source§fn from(_err: EncodingError) -> Self
fn from(_err: EncodingError) -> Self
Converts to this type from the input type.
Source§impl From<EncodingError> for SignerError
impl From<EncodingError> for SignerError
Source§fn from(err: EncodingError) -> Self
fn from(err: EncodingError) -> Self
Converts to this type from the input type.
Source§impl From<Error> for EncodingError
impl From<Error> for EncodingError
Source§impl PartialEq for EncodingError
impl PartialEq for EncodingError
impl Eq for EncodingError
impl StructuralPartialEq for EncodingError
Auto Trait Implementations§
impl Freeze for EncodingError
impl RefUnwindSafe for EncodingError
impl Send for EncodingError
impl Sync for EncodingError
impl Unpin for EncodingError
impl UnwindSafe for EncodingError
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