[][src]Struct lnpbp::dbc::lockscript::LockscriptContainer

pub struct LockscriptContainer {
    pub script: LockScript,
    pub pubkey: PublicKey,
    pub tag: Hash,
    pub tweaking_factor: Option<Hmac<Hash>>,
}

Fields

script: LockScriptpubkey: PublicKeytag: Hash

Single SHA256 hash of the protocol-specific tag

tweaking_factor: Option<Hmac<Hash>>

Tweaking factor stored after [LockscriptContainer::commit_verify] procedure

Trait Implementations

impl Clone for LockscriptContainer[src]

impl Container for LockscriptContainer[src]

type Supplement = Hash

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

type Host = Option<()>

impl Debug for LockscriptContainer[src]

impl Display for LockscriptContainer[src]

impl Eq for LockscriptContainer[src]

impl Hash for LockscriptContainer[src]

impl PartialEq<LockscriptContainer> for LockscriptContainer[src]

impl StructuralEq for LockscriptContainer[src]

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