Struct wallet::ScriptSet [−][src]
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]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Ord for ScriptSet[src]
fn cmp(&self, other: &ScriptSet) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<ScriptSet> for ScriptSet[src]
impl PartialOrd<ScriptSet> for ScriptSet[src]
fn partial_cmp(&self, other: &ScriptSet) -> Option<Ordering>[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl StructuralEq for ScriptSet[src]
impl StructuralPartialEq for ScriptSet[src]
Auto Trait Implementations
impl RefUnwindSafe for ScriptSet
impl Send for ScriptSet
impl Sync for ScriptSet
impl Unpin for ScriptSet
impl UnwindSafe for ScriptSet
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,