[][src]Struct schnorr::SignerAwaitingCommitments

pub struct SignerAwaitingCommitments<'t, C: MuSigContext> { /* fields omitted */ }

State of the party when awaiting nonce commitments from other parties.

Methods

impl<'t, C: MuSigContext> SignerAwaitingCommitments<'t, C>[src]

pub fn receive_commitments(
    self,
    nonce_commitments: Vec<NonceCommitment>
) -> Result<(SignerAwaitingShares<C>, Scalar), SchnorrError>
[src]

Provide nonce commitments to the party and transition to the next round if they match the precommitments.

Auto Trait Implementations

impl<'t, C> RefUnwindSafe for SignerAwaitingCommitments<'t, C> where
    C: RefUnwindSafe

impl<'t, C> Send for SignerAwaitingCommitments<'t, C> where
    C: Send

impl<'t, C> Sync for SignerAwaitingCommitments<'t, C> where
    C: Sync

impl<'t, C> Unpin for SignerAwaitingCommitments<'t, C> where
    C: Unpin

impl<'t, C> !UnwindSafe for SignerAwaitingCommitments<'t, C>

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, U> Cast<U> for T where
    U: FromCast<T>, 

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

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

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

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

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>,