pub struct Builder(_, _);Expand description
An object which can be used to construct a script piece by piece.
Implementations§
source§impl Builder
impl Builder
sourcepub fn push_int(self, data: i64) -> Builder
pub fn push_int(self, data: i64) -> Builder
Adds instructions to push an integer onto the stack. Integers are encoded as little-endian signed-magnitude numbers, but there are dedicated opcodes to push some small integers.
sourcepub fn push_scriptint(self, data: i64) -> Builder
pub fn push_scriptint(self, data: i64) -> Builder
Adds instructions to push an integer onto the stack, using the explicit encoding regardless of the availability of dedicated opcodes.
sourcepub fn push_slice(self, data: &[u8]) -> Builder
pub fn push_slice(self, data: &[u8]) -> Builder
Adds instructions to push some arbitrary data onto the stack.
sourcepub fn push_key(self, key: &PublicKey) -> Builder
pub fn push_key(self, key: &PublicKey) -> Builder
Adds instructions to push a public key onto the stack.
sourcepub fn push_x_only_key(self, x_only_key: &XOnlyPublicKey) -> Builder
pub fn push_x_only_key(self, x_only_key: &XOnlyPublicKey) -> Builder
Adds instructions to push an XOnly public key onto the stack.
sourcepub fn push_opcode(self, data: All) -> Builder
pub fn push_opcode(self, data: All) -> Builder
Adds a single opcode to the script.
sourcepub fn push_verify(self) -> Builder
pub fn push_verify(self) -> Builder
Adds an OP_VERIFY to the script, unless the most-recently-added
opcode has an alternate VERIFY form, in which case that opcode
is replaced e.g., OP_CHECKSIG will become OP_CHECKSIGVERIFY.
sourcepub fn into_script(self) -> Script
pub fn into_script(self) -> Script
Converts the Builder into an unmodifiable Script.
Trait Implementations§
source§impl PartialEq<Builder> for Builder
impl PartialEq<Builder> for Builder
impl Eq for Builder
impl StructuralEq for Builder
impl StructuralPartialEq for Builder
Auto Trait Implementations§
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.