pub enum Ed25519VerifyError {
InvalidPublicKey,
InvalidSignature,
Backend(BackendError),
}Variants§
InvalidPublicKey
Public key bytes not acceptable (wrong length/format).
InvalidSignature
Signature bytes not acceptable (wrong length/format).
Backend(BackendError)
Trait Implementations§
Source§impl Clone for Ed25519VerifyError
impl Clone for Ed25519VerifyError
Source§fn clone(&self) -> Ed25519VerifyError
fn clone(&self) -> Ed25519VerifyError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Ed25519VerifyError
impl Debug for Ed25519VerifyError
Source§impl PartialEq for Ed25519VerifyError
impl PartialEq for Ed25519VerifyError
impl Eq for Ed25519VerifyError
impl StructuralPartialEq for Ed25519VerifyError
Auto Trait Implementations§
impl Freeze for Ed25519VerifyError
impl RefUnwindSafe for Ed25519VerifyError
impl Send for Ed25519VerifyError
impl Sync for Ed25519VerifyError
impl Unpin for Ed25519VerifyError
impl UnsafeUnpin for Ed25519VerifyError
impl UnwindSafe for Ed25519VerifyError
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