pub struct SessionKeyShares {
pub pseudonym: PseudonymSessionKeyShare,
pub attribute: AttributeSessionKeyShare,
}Expand description
A pair of session key shares containing both pseudonym and attribute shares.
Fields§
§pseudonym: PseudonymSessionKeyShare§attribute: AttributeSessionKeyShareTrait Implementations§
Source§fn clone(&self) -> SessionKeyShares
fn clone(&self) -> SessionKeyShares
Returns a duplicate 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§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
Source§fn from(value: (PseudonymSessionKeyShare, AttributeSessionKeyShare)) -> Self
fn from(value: (PseudonymSessionKeyShare, AttributeSessionKeyShare)) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
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