[−][src]Enum casper_types::PublicKey
Simplified raw data type
Variants
Ed25519 public key.
Secp256k1(Secp256k1Bytes)Secp256k1 public key.
Implementations
impl PublicKey[src]
pub fn to_hex(&self) -> String[src]
Converts the public key to hex, where the first byte represents the algorithm tag.
pub fn from_hex<T: AsRef<[u8]>>(input: T) -> Result<PublicKey, FromStrError>[src]
Tries to decode the public key from its hex-representation. The hex format should be as
produced by PublicKey::to_hex().
Trait Implementations
impl AsRef<[u8]> for PublicKey[src]
impl CLTyped for PublicKey[src]
impl Clone for PublicKey[src]
impl Copy for PublicKey[src]
impl DataSize for PublicKey where
[u8; 32]: DataSize,
Secp256k1Bytes: DataSize, [src]
[u8; 32]: DataSize,
Secp256k1Bytes: DataSize,
const IS_DYNAMIC: bool[src]
const STATIC_HEAP_SIZE: usize[src]
fn estimate_heap_size(&self) -> usize[src]
impl Debug for PublicKey[src]
impl<'de> Deserialize<'de> for PublicKey[src]
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>[src]
impl Eq for PublicKey[src]
impl From<PublicKey> for AccountHash[src]
impl FromBytes for PublicKey[src]
fn from_bytes(bytes: &[u8]) -> Result<(Self, &[u8]), Error>[src]
fn from_vec(bytes: Vec<u8>) -> Result<(Self, Vec<u8>), Error>[src]
impl Ord for PublicKey[src]
fn cmp(&self, other: &PublicKey) -> Ordering[src]
#[must_use]fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<PublicKey> for PublicKey[src]
impl PartialOrd<PublicKey> for PublicKey[src]
fn partial_cmp(&self, other: &PublicKey) -> Option<Ordering>[src]
fn lt(&self, other: &PublicKey) -> bool[src]
fn le(&self, other: &PublicKey) -> bool[src]
fn gt(&self, other: &PublicKey) -> bool[src]
fn ge(&self, other: &PublicKey) -> bool[src]
impl Serialize for PublicKey[src]
impl StructuralEq for PublicKey[src]
impl StructuralPartialEq for PublicKey[src]
impl ToBytes for PublicKey[src]
Auto Trait Implementations
impl RefUnwindSafe for PublicKey
impl Send for PublicKey
impl Sync for PublicKey
impl Unpin for PublicKey
impl UnwindSafe for PublicKey
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,