pub enum PublicKeyDeserializationError {
InvalidPublicKey,
}Expand description
Error indicating deserializing a derived public key failed
Variants§
InvalidPublicKey
The public key is invalid
Trait Implementations§
Source§impl Clone for PublicKeyDeserializationError
impl Clone for PublicKeyDeserializationError
Source§fn clone(&self) -> PublicKeyDeserializationError
fn clone(&self) -> PublicKeyDeserializationError
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 moreimpl Copy for PublicKeyDeserializationError
Auto Trait Implementations§
impl Freeze for PublicKeyDeserializationError
impl RefUnwindSafe for PublicKeyDeserializationError
impl Send for PublicKeyDeserializationError
impl Sync for PublicKeyDeserializationError
impl Unpin for PublicKeyDeserializationError
impl UnwindSafe for PublicKeyDeserializationError
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