[][src]Struct lnpbp::bp::blind::OutpointReveal

pub struct OutpointReveal {
    pub blinding: u64,
    pub txid: Txid,
    pub vout: u32,
}

Data required to generate or reveal the information about blinded transaction outpoint

Fields

blinding: u64

Blinding factor preventing rainbow table bruteforce attack based on the existing blockchain txid set

txid: Txid

Txid that should be blinded

vout: u32

Tx output number that should be blinded

Implementations

impl OutpointReveal[src]

Trait Implementations

impl Clone for OutpointReveal[src]

impl CommitVerify<OutpointReveal> for OutpointHash[src]

impl Conceal for OutpointReveal[src]

impl Copy for OutpointReveal[src]

impl Debug for OutpointReveal[src]

impl Default for OutpointReveal[src]

impl Display for OutpointReveal[src]

impl Eq for OutpointReveal[src]

impl From<OutPoint> for OutpointReveal[src]

impl From<OutpointReveal> for OutPoint[src]

impl Hash for OutpointReveal[src]

impl Ord for OutpointReveal[src]

impl PartialEq<OutpointReveal> for OutpointReveal[src]

impl PartialOrd<OutpointReveal> for OutpointReveal[src]

impl StrictDecode for OutpointReveal[src]

type Error = Error

Implementation-dependent error type

impl StrictEncode for OutpointReveal[src]

type Error = Error

Implementation-dependent error type

impl StructuralEq for OutpointReveal[src]

impl StructuralPartialEq for OutpointReveal[src]

Auto Trait Implementations

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> 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> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,