[][src]Struct frost_dalek::signature::Signer

pub struct Signer {
    pub participant_index: u32,
    pub published_commitment_share: (RistrettoPoint, RistrettoPoint),
}

An individual signer in the threshold signature scheme.

Fields

participant_index: u32

The participant index of this signer.

published_commitment_share: (RistrettoPoint, RistrettoPoint)

One of the commitments that were published by each signing participant in the pre-computation phase.

Trait Implementations

impl Clone for Signer[src]

impl Copy for Signer[src]

impl Debug for Signer[src]

impl Eq for Signer[src]

impl Ord for Signer[src]

impl PartialEq<Signer> for Signer[src]

impl PartialOrd<Signer> for Signer[src]

impl StructuralEq for Signer[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,