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.
Auto Trait Implementations§
impl<C> RefUnwindSafe for BindingFactorList<C>where <<<C as Ciphersuite>::Group as Group>::Field as Field>::Scalar: RefUnwindSafe,
impl<C> Send for BindingFactorList<C>where <<<C as Ciphersuite>::Group as Group>::Field as Field>::Scalar: Send,
impl<C> Sync for BindingFactorList<C>where <<<C as Ciphersuite>::Group as Group>::Field as Field>::Scalar: Sync,
impl<C> Unpin for BindingFactorList<C>
impl<C> UnwindSafe for BindingFactorList<C>where <<<C as Ciphersuite>::Group as Group>::Field as Field>::Scalar: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more