pub struct PDLwSlackStatement {
pub ciphertext: BigInt,
pub ek: EncryptionKey,
pub Q: Point<Secp256k1>,
pub G: Point<Secp256k1>,
pub h1: BigInt,
pub h2: BigInt,
pub N_tilde: BigInt,
}Fields§
§ciphertext: BigInt§ek: EncryptionKey§Q: Point<Secp256k1>§G: Point<Secp256k1>§h1: BigInt§h2: BigInt§N_tilde: BigIntTrait Implementations§
Source§impl Clone for PDLwSlackStatement
impl Clone for PDLwSlackStatement
Source§fn clone(&self) -> PDLwSlackStatement
fn clone(&self) -> PDLwSlackStatement
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§impl Debug for PDLwSlackStatement
impl Debug for PDLwSlackStatement
Source§impl<'de> Deserialize<'de> for PDLwSlackStatement
impl<'de> Deserialize<'de> for PDLwSlackStatement
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 Freeze for PDLwSlackStatement
impl RefUnwindSafe for PDLwSlackStatement
impl Send for PDLwSlackStatement
impl Sync for PDLwSlackStatement
impl Unpin for PDLwSlackStatement
impl UnwindSafe for PDLwSlackStatement
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more