[−][src]Struct casperlabs_types::account::PublicKey
A newtype wrapping a [u8; PUBLIC_KEY_LENGTH] which is the raw bytes of
the public key of a cryptographic asymmetric key pair.
Methods
impl PublicKey[src]
pub fn new(key: [u8; 32]) -> PublicKey[src]
Constructs a new PublicKey.
pub fn value(self) -> [u8; 32][src]
Returns the raw bytes of the public key as an array.
pub fn to_vec(&self) -> Vec<u8>[src]
Returns the raw bytes of the public key as a Vec.
Trait Implementations
impl CLTyped for PublicKey[src]
impl Clone for PublicKey[src]
impl Copy for PublicKey[src]
impl Debug for PublicKey[src]
impl Display for PublicKey[src]
impl Eq for PublicKey[src]
impl From<[u8; 32]> for PublicKey[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 Hash for PublicKey[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
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 StructuralEq for PublicKey[src]
impl StructuralPartialEq for PublicKey[src]
impl ToBytes for PublicKey[src]
fn to_bytes(&self) -> Result<Vec<u8>, Error>[src]
fn into_bytes(self) -> Result<Vec<u8>, Error> where
Self: Sized, [src]
Self: Sized,
impl<'_> TryFrom<&'_ [u8]> 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,
fn borrow_mut(&mut self) -> &mut T[src]
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.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
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.
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>,