pub struct DLEQStatement {
pub g: RistrettoPoint,
pub h: RistrettoPoint,
pub x: RistrettoPoint,
pub y: RistrettoPoint,
}Expand description
Public statement for DLEQ proof.
Contains two base points (g, h) and two result points (x, y).
Fields§
§g: RistrettoPoint§h: RistrettoPoint§x: RistrettoPoint§y: RistrettoPointTrait Implementations§
Source§impl Clone for DLEQStatement
impl Clone for DLEQStatement
Source§fn clone(&self) -> DLEQStatement
fn clone(&self) -> DLEQStatement
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 moreAuto Trait Implementations§
impl Freeze for DLEQStatement
impl RefUnwindSafe for DLEQStatement
impl Send for DLEQStatement
impl Sync for DLEQStatement
impl Unpin for DLEQStatement
impl UnwindSafe for DLEQStatement
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