Enum bdk_chain::bitcoin::blockdata::opcodes::ClassifyContext
pub enum ClassifyContext {
TapScript,
Legacy,
}
Expand description
Classification context for the opcode.
Some opcodes like OP_RESERVED
abort the script in ClassifyContext::Legacy
context,
but will act as OP_SUCCESSx
in ClassifyContext::TapScript
(see BIP342 for full list).
Variants§
Trait Implementations§
§impl Clone for ClassifyContext
impl Clone for ClassifyContext
§fn clone(&self) -> ClassifyContext
fn clone(&self) -> ClassifyContext
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 more§impl Debug for ClassifyContext
impl Debug for ClassifyContext
§impl Hash for ClassifyContext
impl Hash for ClassifyContext
§impl Ord for ClassifyContext
impl Ord for ClassifyContext
§impl PartialEq for ClassifyContext
impl PartialEq for ClassifyContext
§fn eq(&self, other: &ClassifyContext) -> bool
fn eq(&self, other: &ClassifyContext) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl PartialOrd for ClassifyContext
impl PartialOrd for ClassifyContext
§fn partial_cmp(&self, other: &ClassifyContext) -> Option<Ordering>
fn partial_cmp(&self, other: &ClassifyContext) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for ClassifyContext
impl Eq for ClassifyContext
impl StructuralPartialEq for ClassifyContext
Auto Trait Implementations§
impl Freeze for ClassifyContext
impl RefUnwindSafe for ClassifyContext
impl Send for ClassifyContext
impl Sync for ClassifyContext
impl Unpin for ClassifyContext
impl UnwindSafe for ClassifyContext
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more