pub enum SignatureError {
GenericError(&'static str),
ConsistencyCheckFailed(),
EncodingError(&'static str),
DecodingError(&'static str),
KeyGenError(&'static str),
LengthError(&'static str),
RNGError(RNGError),
SignatureVerificationFailed,
}Variants§
GenericError(&'static str)
ConsistencyCheckFailed()
EncodingError(&'static str)
DecodingError(&'static str)
KeyGenError(&'static str)
LengthError(&'static str)
RNGError(RNGError)
SignatureVerificationFailed
Trait Implementations§
Source§impl Debug for SignatureError
impl Debug for SignatureError
Source§impl From<RNGError> for SignatureError
impl From<RNGError> for SignatureError
Source§fn from(e: RNGError) -> SignatureError
fn from(e: RNGError) -> SignatureError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SignatureError
impl RefUnwindSafe for SignatureError
impl Send for SignatureError
impl Sync for SignatureError
impl Unpin for SignatureError
impl UnsafeUnpin for SignatureError
impl UnwindSafe for SignatureError
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