[][src]Struct lnpbp::dbc::taproot::TaprootContainer

pub struct TaprootContainer {
    pub script_root: Hash,
    pub intermediate_key: PublicKey,
    pub tag: Hash,
    pub tweaking_factor: Option<Hmac<Hash>>,
}

Fields

script_root: Hashintermediate_key: PublicKeytag: Hash

Single SHA256 hash of the protocol-specific tag

tweaking_factor: Option<Hmac<Hash>>

Tweaking factor stored after [TaprootContainer::commit_verify] procedure

Trait Implementations

impl Clone for TaprootContainer[src]

impl Container for TaprootContainer[src]

type Supplement = Hash

Out supplement is a protocol-specific tag in its hashed form

type Host = Option<()>

Our proof contains the host, so we don't need host here

impl Debug for TaprootContainer[src]

impl Display for TaprootContainer[src]

impl Eq for TaprootContainer[src]

impl Hash for TaprootContainer[src]

impl PartialEq<TaprootContainer> for TaprootContainer[src]

impl StructuralEq for TaprootContainer[src]

impl StructuralPartialEq for TaprootContainer[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> 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.