Struct frost_core::frost::BindingFactorList
source · pub struct BindingFactorList<C: Ciphersuite>(_);
Expand description
A list of binding factors and their associated identifiers.
Implementations§
source§impl<C> BindingFactorList<C>where
C: Ciphersuite,
impl<C> BindingFactorList<C>where C: Ciphersuite,
sourcepub fn iter(&self) -> impl Iterator<Item = (&Identifier<C>, &BindingFactor<C>)>
pub fn iter(&self) -> impl Iterator<Item = (&Identifier<C>, &BindingFactor<C>)>
Return iterator through all factors.
Trait Implementations§
source§impl<C: Clone + Ciphersuite> Clone for BindingFactorList<C>
impl<C: Clone + Ciphersuite> Clone for BindingFactorList<C>
source§fn clone(&self) -> BindingFactorList<C>
fn clone(&self) -> BindingFactorList<C>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<C> Index<Identifier<C>> for BindingFactorList<C>where
C: Ciphersuite,
impl<C> Index<Identifier<C>> for BindingFactorList<C>where C: Ciphersuite,
§type Output = BindingFactor<C>
type Output = BindingFactor<C>
The returned type after indexing.