[][src]Struct lnpbp::bp::scripts::types::ScriptSet

pub struct ScriptSet {
    pub pubkey_script: PubkeyScript,
    pub sig_script: SigScript,
    pub witness_script: Option<Witness>,
}

Scripting data for both transaction output and spending transaction input parts that can be generated from some complete bitcoin Script (LockScript) or public key using particular [ConversionStrategy]

Fields

pubkey_script: PubkeyScriptsig_script: SigScriptwitness_script: Option<Witness>

Implementations

impl ScriptSet[src]

pub fn has_witness(&self) -> bool[src]

Detects whether the structure contains witness data

pub fn is_witness_sh(&self) -> bool[src]

Detects whether the structure is either P2SH-P2WPKH or P2SH-P2WSH

pub fn transmutate(&mut self, use_witness: bool) -> bool[src]

Tries to convert witness-based script structure into pre-SegWit – and vice verse. Returns true if the conversion is possible and was successful, false if the conversion is impossible; in the later case the self is not changed. The conversion is impossible in the following cases:

  • for P2SH-P2WPKH or P2SH-P2WPSH variants (can be detected with ScriptSet::is_witness_sh function)
  • for scripts that are internally inconsistent

Trait Implementations

impl Clone for ScriptSet[src]

impl Debug for ScriptSet[src]

impl Default for ScriptSet[src]

impl Display for ScriptSet[src]

impl Eq for ScriptSet[src]

impl Hash for ScriptSet[src]

impl PartialEq<ScriptSet> for ScriptSet[src]

impl StructuralEq for ScriptSet[src]

impl StructuralPartialEq for ScriptSet[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>,