Enum derive::WitnessVer

source ·
#[repr(u8)]
pub enum WitnessVer {
Show 17 variants V0 = 0, V1 = 81, V2 = 82, V3 = 83, V4 = 84, V5 = 85, V6 = 86, V7 = 87, V8 = 88, V9 = 89, V10 = 90, V11 = 91, V12 = 92, V13 = 93, V14 = 94, V15 = 95, V16 = 96,
}
Expand description

Version of the witness program.

First byte of scriptPubkey in transaction output for transactions starting with 0 and 0x51-0x60 (inclusive).

Variants§

§

V0 = 0

Initial version of witness program. Used for P2WPKH and P2WPK outputs

§

V1 = 81

Version of witness program used for Taproot P2TR outputs.

§

V2 = 82

Future (unsupported) version of witness program.

§

V3 = 83

Future (unsupported) version of witness program.

§

V4 = 84

Future (unsupported) version of witness program.

§

V5 = 85

Future (unsupported) version of witness program.

§

V6 = 86

Future (unsupported) version of witness program.

§

V7 = 87

Future (unsupported) version of witness program.

§

V8 = 88

Future (unsupported) version of witness program.

§

V9 = 89

Future (unsupported) version of witness program.

§

V10 = 90

Future (unsupported) version of witness program.

§

V11 = 91

Future (unsupported) version of witness program.

§

V12 = 92

Future (unsupported) version of witness program.

§

V13 = 93

Future (unsupported) version of witness program.

§

V14 = 94

Future (unsupported) version of witness program.

§

V15 = 95

Future (unsupported) version of witness program.

§

V16 = 96

Future (unsupported) version of witness program.

Implementations§

source§

impl WitnessVer

source

pub fn from_op_code(op_code: OpCode) -> Result<WitnessVer, SegwitError>

Converts bitcoin script opcode into WitnessVer variant.

§Errors

If the opcode does not correspond to any witness version, errors with SegwitError::MalformedWitnessVersion.

source

pub fn from_version_no(no: u8) -> Result<WitnessVer, SegwitError>

Converts witness version ordinal number into WitnessVer variant.

§Errors

If the witness version number exceeds 16, errors with SegwitError::MalformedWitnessVersion.

source

pub fn op_code(self) -> OpCode

Converts WitnessVer instance into corresponding Bitcoin op-code.

source

pub fn version_no(self) -> u8

Converts WitnessVer into ordinal version number.

Trait Implementations§

source§

impl Clone for WitnessVer

source§

fn clone(&self) -> WitnessVer

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for WitnessVer

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Display for WitnessVer

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Hash for WitnessVer

source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for WitnessVer

source§

fn cmp(&self, other: &WitnessVer) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for WitnessVer

source§

fn eq(&self, other: &WitnessVer) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for WitnessVer

source§

fn partial_cmp(&self, other: &WitnessVer) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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 more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl StrictDecode for WitnessVer

source§

impl StrictDumb for WitnessVer

source§

impl StrictEncode for WitnessVer

source§

fn strict_encode<W>(&self, writer: W) -> Result<W, Error>
where W: TypedWrite,

source§

fn strict_write(&self, writer: impl WriteRaw) -> Result<(), Error>

source§

impl StrictEnum for WitnessVer

source§

impl StrictSum for WitnessVer

source§

impl StrictType for WitnessVer

source§

const STRICT_LIB_NAME: &'static str = LIB_NAME_BITCOIN

source§

fn strict_name() -> Option<TypeName>

source§

impl TryFrom<u8> for WitnessVer

§

type Error = VariantError<u8>

The type returned in the event of a conversion error.
source§

fn try_from(value: u8) -> Result<WitnessVer, <WitnessVer as TryFrom<u8>>::Error>

Performs the conversion.
source§

impl Copy for WitnessVer

source§

impl Eq for WitnessVer

source§

impl StructuralPartialEq for WitnessVer

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> VerifyEq for T
where T: Eq,

source§

fn verify_eq(&self, other: &T) -> bool

Verifies commit-equivalence of two instances of the same type.
source§

impl<C> RestrictedCharacter for C
where C: Copy + Into<u8> + TryFrom<u8, Error = VariantError<u8>> + StrictEncode + StrictDumb,