pub struct Proof {
pub circuit_proof: Proof,
pub r: ProjectivePoint,
}Expand description
Represents reciprocal range-proof: zk-proof that committed value lies in [0..dim_np^dim_nd) range.
Fields§
§circuit_proof: Proof§r: ProjectivePointTrait Implementations§
Source§impl From<&Proof> for SerializableProof
impl From<&Proof> for SerializableProof
Source§impl From<&SerializableProof> for Proof
impl From<&SerializableProof> for Proof
Source§fn from(value: &SerializableProof) -> Self
fn from(value: &SerializableProof) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Proof
impl RefUnwindSafe for Proof
impl Send for Proof
impl Sync for Proof
impl Unpin for Proof
impl UnwindSafe for Proof
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