pub struct LeafScript {
pub version: LeafVersion,
pub script: LockScript,
}
Expand description
Any valid branch of taproot script spending
Fields§
§version: LeafVersion
Leaf version of the script.
script: LockScript
Script data.
Implementations§
Source§impl LeafScript
impl LeafScript
Sourcepub fn tapscript(script: TapScript) -> LeafScript
pub fn tapscript(script: TapScript) -> LeafScript
Constructs tapscript.
Sourcepub fn with(version: LeafVersion, script: LockScript) -> LeafScript
pub fn with(version: LeafVersion, script: LockScript) -> LeafScript
Constructs leaf script from a leaf version and a script.
Sourcepub fn tap_leaf_hash(&self) -> TapLeafHash
pub fn tap_leaf_hash(&self) -> TapLeafHash
Computes TapLeafHash
for a given leaf script.
Trait Implementations§
Source§impl Clone for LeafScript
impl Clone for LeafScript
Source§fn clone(&self) -> LeafScript
fn clone(&self) -> LeafScript
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LeafScript
impl Debug for LeafScript
Source§impl Display for LeafScript
impl Display for LeafScript
Source§impl From<TapScript> for LeafScript
impl From<TapScript> for LeafScript
Source§impl Hash for LeafScript
impl Hash for LeafScript
Source§impl Ord for LeafScript
impl Ord for LeafScript
Source§fn cmp(&self, other: &LeafScript) -> Ordering
fn cmp(&self, other: &LeafScript) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LeafScript
impl PartialEq for LeafScript
Source§impl PartialOrd for LeafScript
impl PartialOrd for LeafScript
Source§impl StrictDecode for LeafScript
impl StrictDecode for LeafScript
Source§fn strict_decode<D: Read>(d: D) -> Result<Self, Error>
fn strict_decode<D: Read>(d: D) -> Result<Self, Error>
Decode with the given
std::io::Read
instance; must either
construct an instance or return implementation-specific error type.Source§fn strict_deserialize(data: impl AsRef<[u8]>) -> Result<Self, Error>
fn strict_deserialize(data: impl AsRef<[u8]>) -> Result<Self, Error>
Tries to deserialize byte array into the current type using
StrictDecode::strict_decode
. If there are some data remains in the
buffer once deserialization is completed, fails with
Error::DataNotEntirelyConsumed
. Use io::Cursor
over the buffer and
StrictDecode::strict_decode
to avoid such failures.Source§fn strict_file_load(path: impl AsRef<Path>) -> Result<Self, Error>
fn strict_file_load(path: impl AsRef<Path>) -> Result<Self, Error>
Reads data from file at
path
and reconstructs object from it. Fails
with Error::DataNotEntirelyConsumed
if file contains remaining
data after the object reconstruction.Source§impl StrictEncode for LeafScript
impl StrictEncode for LeafScript
Source§fn strict_encode<E: Write>(&self, e: E) -> Result<usize, Error>
fn strict_encode<E: Write>(&self, e: E) -> Result<usize, Error>
Encode with the given
std::io::Write
instance; must return result
with either amount of bytes encoded – or implementation-specific
error type.Source§fn strict_serialize(&self) -> Result<Vec<u8>, Error>
fn strict_serialize(&self) -> Result<Vec<u8>, Error>
Serializes data as a byte array using
StrictEncode::strict_encode
functionimpl Eq for LeafScript
impl StructuralPartialEq for LeafScript
Auto Trait Implementations§
impl Freeze for LeafScript
impl RefUnwindSafe for LeafScript
impl Send for LeafScript
impl Sync for LeafScript
impl Unpin for LeafScript
impl UnwindSafe for LeafScript
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
Mutably borrows from an owned value. Read more