pub struct PublicInfo<'a, G: Group> {
pub polynomial: Vec<G::Element>,
pub proof_of_possession: Cow<'a, ProofOfPossession<G>>,
pub opening: Opening,
}
Expand description
Public participant information in the distributed key generation protocol. Returned by
ParticipantCollectingPolynomials::public_info()
.
Fields§
§polynomial: Vec<G::Element>
Participant’s public polynomial.
proof_of_possession: Cow<'a, ProofOfPossession<G>>
Proof of possession for the secret polynomial that corresponds to polynomial
.
opening: Opening
Opening for the participant’s key commitment.
Implementations§
Source§impl<G: Group> PublicInfo<'_, G>
impl<G: Group> PublicInfo<'_, G>
Sourcepub fn into_owned(self) -> PublicInfo<'static, G>
pub fn into_owned(self) -> PublicInfo<'static, G>
Converts this information to the owned form.
Trait Implementations§
Source§impl<'a, G: Clone + Group> Clone for PublicInfo<'a, G>
impl<'a, G: Clone + Group> Clone for PublicInfo<'a, G>
Source§fn clone(&self) -> PublicInfo<'a, G>
fn clone(&self) -> PublicInfo<'a, G>
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<'de, 'a, G: Group> Deserialize<'de> for PublicInfo<'a, G>
impl<'de, 'a, G: Group> Deserialize<'de> for PublicInfo<'a, G>
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl<'a, G> Freeze for PublicInfo<'a, G>
impl<'a, G> RefUnwindSafe for PublicInfo<'a, G>
impl<'a, G> Send for PublicInfo<'a, G>
impl<'a, G> Sync for PublicInfo<'a, G>
impl<'a, G> Unpin for PublicInfo<'a, G>
impl<'a, G> UnwindSafe for PublicInfo<'a, G>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)