Enum bitcoin::opcodes::ClassifyContext
source · 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§
source§impl Clone for ClassifyContext
impl Clone for ClassifyContext
source§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 moresource§impl Debug for ClassifyContext
impl Debug for ClassifyContext
source§impl Hash for ClassifyContext
impl Hash for ClassifyContext
source§impl Ord for ClassifyContext
impl Ord for ClassifyContext
source§fn cmp(&self, other: &ClassifyContext) -> Ordering
fn cmp(&self, other: &ClassifyContext) -> 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<ClassifyContext> for ClassifyContext
impl PartialEq<ClassifyContext> for ClassifyContext
source§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 ==
.source§impl PartialOrd<ClassifyContext> for ClassifyContext
impl PartialOrd<ClassifyContext> for ClassifyContext
source§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 StructuralEq for ClassifyContext
impl StructuralPartialEq for ClassifyContext
Auto Trait Implementations§
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