pub enum IdentifierList<'a, C: Ciphersuite> {
Default,
Custom(&'a [Identifier<C>]),
}
Expand description
The identifier list to use when generating key shares.
Variants§
Default
Use the default values (1 to max_signers, inclusive).
Custom(&'a [Identifier<C>])
A user-provided list of identifiers.
Auto Trait Implementations§
impl<'a, C> Freeze for IdentifierList<'a, C>
impl<'a, C> RefUnwindSafe for IdentifierList<'a, C>
impl<'a, C> Send for IdentifierList<'a, C>
impl<'a, C> Sync for IdentifierList<'a, C>
impl<'a, C> Unpin for IdentifierList<'a, C>
impl<'a, C> UnwindSafe for IdentifierList<'a, C>
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