pub struct Ed25519PublicKey(/* private fields */);Expand description
An Ed25519 public key.
Implementations§
Trait Implementations§
Source§impl Clone for Ed25519PublicKey
impl Clone for Ed25519PublicKey
Source§fn clone(&self) -> Ed25519PublicKey
fn clone(&self) -> Ed25519PublicKey
Returns a copy 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 Ed25519PublicKey
impl Debug for Ed25519PublicKey
Source§impl Display for Ed25519PublicKey
impl Display for Ed25519PublicKey
Source§impl<'a> From<&'a Ed25519PublicKey> for &'a [u8]
impl<'a> From<&'a Ed25519PublicKey> for &'a [u8]
Source§fn from(value: &'a Ed25519PublicKey) -> Self
fn from(value: &'a Ed25519PublicKey) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a Ed25519PublicKey> for &'a [u8; 32]
impl<'a> From<&'a Ed25519PublicKey> for &'a [u8; 32]
Source§fn from(value: &'a Ed25519PublicKey) -> Self
fn from(value: &'a Ed25519PublicKey) -> Self
Converts to this type from the input type.
Source§impl Hash for Ed25519PublicKey
impl Hash for Ed25519PublicKey
Source§impl PartialEq for Ed25519PublicKey
impl PartialEq for Ed25519PublicKey
impl Eq for Ed25519PublicKey
impl StructuralPartialEq for Ed25519PublicKey
Auto Trait Implementations§
impl Freeze for Ed25519PublicKey
impl RefUnwindSafe for Ed25519PublicKey
impl Send for Ed25519PublicKey
impl Sync for Ed25519PublicKey
impl Unpin for Ed25519PublicKey
impl UnwindSafe for Ed25519PublicKey
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