[][src]Struct bls_amcl::common::VerKey

pub struct VerKey {
    pub point: VerkeyGroup,
}

Fields

point: VerkeyGroup

Methods

impl VerKey[src]

pub fn from_sigkey(sk: &SigKey, params: &Params) -> Self[src]

pub fn from_bytes(vk_bytes: &[u8]) -> Result<VerKey, SerzDeserzError>[src]

pub fn to_bytes(&self) -> Vec<u8>[src]

Trait Implementations

impl AsRef<VerKey> for VerKey[src]

impl AsRef<VerKey> for Keypair[src]

impl AsRef<VerKey> for (Signature, VerKey)[src]

impl AsRef<VerKey> for (VerKey, Signature)[src]

impl Clone for VerKey[src]

impl PartialEq<VerKey> for VerKey[src]

impl Debug for VerKey[src]

impl StructuralPartialEq for VerKey[src]

impl<'de> Deserialize<'de> for VerKey[src]

impl Serialize for VerKey[src]

Auto Trait Implementations

impl Send for VerKey

impl Sync for VerKey

impl Unpin for VerKey

impl UnwindSafe for VerKey

impl RefUnwindSafe for VerKey

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,