[−][src]Enum libp2p_core::PublicKey
Public key used by the remote.
Variants
Rsa(Vec<u8>)DER format.
Ed25519(Vec<u8>)Format = ???
Secp256k1(Vec<u8>)Format = ???
Methods
impl PublicKey[src]
pub fn into_protobuf_encoding(self) -> Vec<u8>[src]
Encodes the public key as a protobuf message.
Used at various locations in the wire protocol of libp2p.
pub fn from_protobuf_encoding(bytes: &[u8]) -> Result<PublicKey, IoError>[src]
Decodes the public key from a protobuf message.
Used at various locations in the wire protocol of libp2p.
pub fn into_peer_id(self) -> PeerId[src]
Builds a PeerId corresponding to the public key of the node.
Trait Implementations
impl From<PublicKey> for PeerId[src]
impl Eq for PublicKey[src]
impl Clone for PublicKey[src]
fn clone(&self) -> PublicKey[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq<PublicKey> for PublicKey[src]
impl Debug for PublicKey[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
🔬 This is a nightly-only experimental API. (
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Same for T
type Output = T
Should always be Self