[][src]Struct bulletproofs::range_proof::messages::BitCommitment

pub struct BitCommitment {
    pub(super) V_j: CompressedRistretto,
    pub(super) A_j: RistrettoPoint,
    pub(super) S_j: RistrettoPoint,
}

A commitment to the bits of a party's value.

Fields

V_j: CompressedRistrettoA_j: RistrettoPointS_j: RistrettoPoint

Trait Implementations

impl Clone for BitCommitment[src]

impl Copy for BitCommitment[src]

impl Debug for BitCommitment[src]

impl<'de> Deserialize<'de> for BitCommitment[src]

impl Serialize for BitCommitment[src]

Auto Trait Implementations

impl RefUnwindSafe for BitCommitment

impl Send for BitCommitment

impl Sync for BitCommitment

impl Unpin for BitCommitment

impl UnwindSafe for BitCommitment

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.