pub struct Type {
pub corr: Correctness,
pub mall: Malleability,
}
Expand description
Structure representing the type of a Miniscript fragment, including all properties relevant to the main codebase
Fields§
§corr: Correctness
Correctness/soundness properties
mall: Malleability
Malleability properties
Implementations§
Source§impl Type
impl Type
Sourcepub fn is_subtype(&self, other: Self) -> bool
pub fn is_subtype(&self, other: Self) -> bool
Check whether the self
is a subtype of other
argument .
This checks whether the argument other
has attributes which are present
in the given Type
. This returns true
on same arguments
a.is_subtype(a)
is true
.
Trait Implementations§
Source§impl Ord for Type
impl Ord for Type
Source§impl PartialOrd for Type
impl PartialOrd for Type
Source§impl Property for Type
impl Property for Type
Source§fn sanity_checks(&self)
fn sanity_checks(&self)
Any extra sanity checks/assertions that should be applied after
typechecking
Source§fn from_false() -> Self
fn from_false() -> Self
Type property of the
False
fragmentSource§fn from_pk_k<Ctx: ScriptContext>() -> Self
fn from_pk_k<Ctx: ScriptContext>() -> Self
Type property of the
PkK
fragmentSource§fn from_pk_h<Ctx: ScriptContext>() -> Self
fn from_pk_h<Ctx: ScriptContext>() -> Self
Type property of the
PkH
fragmentSource§fn from_multi(k: usize, n: usize) -> Self
fn from_multi(k: usize, n: usize) -> Self
Type property of a
Multi
fragmentSource§fn from_multi_a(k: usize, n: usize) -> Self
fn from_multi_a(k: usize, n: usize) -> Self
Type property of a
MultiA
fragmentSource§fn from_sha256() -> Self
fn from_sha256() -> Self
Type property of a
Sha256
hash. Default implementation simply
passes through to from_hash
Source§fn from_hash256() -> Self
fn from_hash256() -> Self
Type property of a
Hash256
hash. Default implementation simply
passes through to from_hash
Source§fn from_ripemd160() -> Self
fn from_ripemd160() -> Self
Type property of a
Ripemd160
hash. Default implementation simply
passes through to from_hash
Source§fn from_hash160() -> Self
fn from_hash160() -> Self
Type property of a
Hash160
hash. Default implementation simply
passes through to from_hash
Source§fn from_after(t: LockTime) -> Self
fn from_after(t: LockTime) -> Self
Type property of an absolute timelock. Default implementation simply
passes through to
from_time
Source§fn from_older(t: Sequence) -> Self
fn from_older(t: Sequence) -> Self
Type property of a relative timelock. Default implementation simply
passes through to
from_time
Source§fn cast_check(self) -> Result<Self, ErrorKind>
fn cast_check(self) -> Result<Self, ErrorKind>
Cast using the
Check
wrapperSource§fn cast_dupif(self) -> Result<Self, ErrorKind>
fn cast_dupif(self) -> Result<Self, ErrorKind>
Cast using the
DupIf
wrapperSource§fn cast_verify(self) -> Result<Self, ErrorKind>
fn cast_verify(self) -> Result<Self, ErrorKind>
Cast using the
Verify
wrapperSource§fn cast_nonzero(self) -> Result<Self, ErrorKind>
fn cast_nonzero(self) -> Result<Self, ErrorKind>
Cast using the
NonZero
wrapperSource§fn cast_zeronotequal(self) -> Result<Self, ErrorKind>
fn cast_zeronotequal(self) -> Result<Self, ErrorKind>
Cast using the
ZeroNotEqual
wrapperSource§fn cast_or_i_false(self) -> Result<Self, ErrorKind>
fn cast_or_i_false(self) -> Result<Self, ErrorKind>
Cast by changing
[X]
to or_i([X], 0)
or or_i(0, [X])
Source§fn cast_unlikely(self) -> Result<Self, ErrorKind>
fn cast_unlikely(self) -> Result<Self, ErrorKind>
Cast by changing
[X]
to or_i([X], 0)
. Default implementation
simply passes through to cast_or_i_false
Source§fn cast_likely(self) -> Result<Self, ErrorKind>
fn cast_likely(self) -> Result<Self, ErrorKind>
Cast by changing
[X]
to or_i(0, [X])
. Default implementation
simply passes through to cast_or_i_false
Source§fn and_b(left: Self, right: Self) -> Result<Self, ErrorKind>
fn and_b(left: Self, right: Self) -> Result<Self, ErrorKind>
Computes the type of an
AndB
fragmentSource§fn and_v(left: Self, right: Self) -> Result<Self, ErrorKind>
fn and_v(left: Self, right: Self) -> Result<Self, ErrorKind>
Computes the type of an
AndV
fragmentSource§fn or_b(left: Self, right: Self) -> Result<Self, ErrorKind>
fn or_b(left: Self, right: Self) -> Result<Self, ErrorKind>
Computes the type of an
OrB
fragmentSource§fn or_d(left: Self, right: Self) -> Result<Self, ErrorKind>
fn or_d(left: Self, right: Self) -> Result<Self, ErrorKind>
Computes the type of an
OrD
fragmentSource§fn or_c(left: Self, right: Self) -> Result<Self, ErrorKind>
fn or_c(left: Self, right: Self) -> Result<Self, ErrorKind>
Computes the type of an
OrC
fragmentSource§fn or_i(left: Self, right: Self) -> Result<Self, ErrorKind>
fn or_i(left: Self, right: Self) -> Result<Self, ErrorKind>
Computes the type of an
OrI
fragmentSource§fn and_or(a: Self, b: Self, c: Self) -> Result<Self, ErrorKind>
fn and_or(a: Self, b: Self, c: Self) -> Result<Self, ErrorKind>
Computes the type of an
AndOr
fragmentSource§fn threshold<S>(k: usize, n: usize, sub_ck: S) -> Result<Self, ErrorKind>
fn threshold<S>(k: usize, n: usize, sub_ck: S) -> Result<Self, ErrorKind>
Computes the type of an
Thresh
fragmentimpl Copy for Type
impl Eq for Type
impl StructuralPartialEq for Type
Auto Trait Implementations§
impl Freeze for Type
impl RefUnwindSafe for Type
impl Send for Type
impl Sync for Type
impl Unpin for Type
impl UnwindSafe for Type
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