Struct sapio_miniscript::descriptor::SortedMultiVec[][src]

pub struct SortedMultiVec<Pk: MiniscriptKey, Ctx: ScriptContext> {
    pub k: usize,
    pub pks: Vec<Pk>,
    // some fields omitted
}

Contents of a “sortedmulti” descriptor

Fields

k: usize

signatures required

pks: Vec<Pk>

public keys inside sorted Multi

Implementations

impl<Pk: MiniscriptKey, Ctx: ScriptContext> SortedMultiVec<Pk, Ctx>[src]

pub fn new(k: usize, pks: Vec<Pk>) -> Result<Self, Error>[src]

Create a new instance of SortedMultiVec given a list of keys and the threshold

Internally checks all the applicable size limits and pubkey types limitations according to the current Ctx.

pub fn from_tree(tree: &Tree<'_>) -> Result<Self, Error> where
    Pk: FromStr,
    <Pk as FromStr>::Err: ToString
[src]

Parse an expression tree into a SortedMultiVec

pub fn translate_pk<FPk, Q, FuncError>(
    &self,
    translatefpk: &mut FPk
) -> Result<SortedMultiVec<Q, Ctx>, FuncError> where
    FPk: FnMut(&Pk) -> Result<Q, FuncError>,
    Q: MiniscriptKey
[src]

This will panic if translatefpk returns an uncompressed key when converting to a Segwit descriptor. To prevent this panic, ensure translatefpk returns an error in this case instead.

impl<Pk: MiniscriptKey, Ctx: ScriptContext> SortedMultiVec<Pk, Ctx>[src]

pub fn sanity_check(&self) -> Result<(), Error>[src]

utility function to sanity a sorted multi vec

impl<Pk: MiniscriptKey, Ctx: ScriptContext> SortedMultiVec<Pk, Ctx>[src]

pub fn sorted_node(&self) -> Terminal<Pk, Ctx> where
    Pk: ToPublicKey
[src]

Create Terminal::Multi containing sorted pubkeys

pub fn encode(&self) -> Script where
    Pk: ToPublicKey
[src]

Encode as a Bitcoin script

pub fn satisfy<S>(&self, satisfier: S) -> Result<Vec<Vec<u8>>, Error> where
    Pk: ToPublicKey,
    S: Satisfier<Pk>, 
[src]

Attempt to produce a satisfying witness for the witness script represented by the parse tree

pub fn script_size(&self) -> usize[src]

Size, in bytes of the script-pubkey. If this Miniscript is used outside of segwit (e.g. in a bare or P2SH descriptor), this quantity should be multiplied by 4 to compute the weight.

In general, it is not recommended to use this function directly, but to instead call the corresponding function on a Descriptor, which will handle the segwit/non-segwit technicalities for you.

pub fn max_satisfaction_witness_elements(&self) -> usize[src]

Maximum number of witness elements used to satisfy the Miniscript fragment, including the witness script itself. Used to estimate the weight of the VarInt that specifies this number in a serialized transaction.

This function may panic on malformed Miniscript objects which do not correspond to semantically sane Scripts. (Such scripts should be rejected at parse time. Any exceptions are bugs.)

pub fn max_satisfaction_size(&self) -> usize[src]

Maximum size, in bytes, of a satisfying witness. In general, it is not recommended to use this function directly, but to instead call the corresponding function on a Descriptor, which will handle the segwit/non-segwit technicalities for you.

All signatures are assumed to be 73 bytes in size, including the length prefix (segwit) or push opcode (pre-segwit) and sighash postfix.

Trait Implementations

impl<Pk: Clone + MiniscriptKey, Ctx: Clone + ScriptContext> Clone for SortedMultiVec<Pk, Ctx>[src]

impl<Pk: MiniscriptKey, Ctx: ScriptContext> Debug for SortedMultiVec<Pk, Ctx>[src]

impl<Pk: MiniscriptKey, Ctx: ScriptContext> Display for SortedMultiVec<Pk, Ctx>[src]

impl<Pk: Eq + MiniscriptKey, Ctx: Eq + ScriptContext> Eq for SortedMultiVec<Pk, Ctx>[src]

impl<Pk: MiniscriptKey, Ctx: ScriptContext> ForEachKey<Pk> for SortedMultiVec<Pk, Ctx>[src]

impl<Pk: MiniscriptKey, Ctx: ScriptContext> Liftable<Pk> for SortedMultiVec<Pk, Ctx>[src]

impl<Pk: Ord + MiniscriptKey, Ctx: Ord + ScriptContext> Ord for SortedMultiVec<Pk, Ctx>[src]

impl<Pk: PartialEq + MiniscriptKey, Ctx: PartialEq + ScriptContext> PartialEq<SortedMultiVec<Pk, Ctx>> for SortedMultiVec<Pk, Ctx>[src]

impl<Pk: PartialOrd + MiniscriptKey, Ctx: PartialOrd + ScriptContext> PartialOrd<SortedMultiVec<Pk, Ctx>> for SortedMultiVec<Pk, Ctx>[src]

impl<Pk: MiniscriptKey, Ctx: ScriptContext> StructuralEq for SortedMultiVec<Pk, Ctx>[src]

impl<Pk: MiniscriptKey, Ctx: ScriptContext> StructuralPartialEq for SortedMultiVec<Pk, Ctx>[src]

Auto Trait Implementations

impl<Pk, Ctx> RefUnwindSafe for SortedMultiVec<Pk, Ctx> where
    Ctx: RefUnwindSafe,
    Pk: RefUnwindSafe

impl<Pk, Ctx> Send for SortedMultiVec<Pk, Ctx> where
    Ctx: Send,
    Pk: Send

impl<Pk, Ctx> Sync for SortedMultiVec<Pk, Ctx> where
    Ctx: Sync,
    Pk: Sync

impl<Pk, Ctx> Unpin for SortedMultiVec<Pk, Ctx> where
    Ctx: Unpin,
    Pk: Unpin

impl<Pk, Ctx> UnwindSafe for SortedMultiVec<Pk, Ctx> where
    Ctx: UnwindSafe,
    Pk: UnwindSafe

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.