pub struct Ed25519VerifyingKey(/* private fields */);Expand description
A verification key.
Implementations§
Source§impl Ed25519VerifyingKey
impl Ed25519VerifyingKey
Sourcepub fn from_slice(raw: &[u8]) -> Result<Ed25519VerifyingKey>
pub fn from_slice(raw: &[u8]) -> Result<Ed25519VerifyingKey>
Create a verification key from a slice.
Trait Implementations§
Source§impl AsRef<PublicKey> for Ed25519VerifyingKey
impl AsRef<PublicKey> for Ed25519VerifyingKey
Source§impl Clone for Ed25519VerifyingKey
impl Clone for Ed25519VerifyingKey
Source§fn clone(&self) -> Ed25519VerifyingKey
fn clone(&self) -> Ed25519VerifyingKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for Ed25519VerifyingKey
Source§impl Debug for Ed25519VerifyingKey
impl Debug for Ed25519VerifyingKey
impl Eq for Ed25519VerifyingKey
Source§impl PartialEq for Ed25519VerifyingKey
impl PartialEq for Ed25519VerifyingKey
impl StructuralPartialEq for Ed25519VerifyingKey
Auto Trait Implementations§
impl Freeze for Ed25519VerifyingKey
impl RefUnwindSafe for Ed25519VerifyingKey
impl Send for Ed25519VerifyingKey
impl Sync for Ed25519VerifyingKey
impl Unpin for Ed25519VerifyingKey
impl UnsafeUnpin for Ed25519VerifyingKey
impl UnwindSafe for Ed25519VerifyingKey
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