Enum breez_sdk_liquid::bitcoin::util::address::WitnessVersion
#[repr(u8)]pub enum WitnessVersion {
Show 17 variants
V0 = 0,
V1 = 1,
V2 = 2,
V3 = 3,
V4 = 4,
V5 = 5,
V6 = 6,
V7 = 7,
V8 = 8,
V9 = 9,
V10 = 10,
V11 = 11,
V12 = 12,
V13 = 13,
V14 = 14,
V15 = 15,
V16 = 16,
}
Expand description
Version of the witness program.
Helps limit possible versions of the witness according to the specification. If a plain u8
type was used instead it would mean that the version may be > 16, which would be incorrect.
First byte of scriptPubkey
in transaction output for transactions starting with opcodes
ranging from 0 to 16 (inclusive).
Variants§
V0 = 0
Initial version of witness program. Used for P2WPKH and P2WPK outputs
V1 = 1
Version of witness program used for Taproot P2TR outputs.
V2 = 2
Future (unsupported) version of witness program.
V3 = 3
Future (unsupported) version of witness program.
V4 = 4
Future (unsupported) version of witness program.
V5 = 5
Future (unsupported) version of witness program.
V6 = 6
Future (unsupported) version of witness program.
V7 = 7
Future (unsupported) version of witness program.
V8 = 8
Future (unsupported) version of witness program.
V9 = 9
Future (unsupported) version of witness program.
V10 = 10
Future (unsupported) version of witness program.
V11 = 11
Future (unsupported) version of witness program.
V12 = 12
Future (unsupported) version of witness program.
V13 = 13
Future (unsupported) version of witness program.
V14 = 14
Future (unsupported) version of witness program.
V15 = 15
Future (unsupported) version of witness program.
V16 = 16
Future (unsupported) version of witness program.
Implementations§
§impl WitnessVersion
impl WitnessVersion
pub fn from_u5(value: u5) -> Result<WitnessVersion, Error>
👎Deprecated since 0.29.0: use try_from instead
pub fn from_u5(value: u5) -> Result<WitnessVersion, Error>
Converts 5-bit unsigned integer value matching single symbol from Bech32(m) address encoding
(bech32::u5
) into WitnessVersion
variant.
§Returns
Version of the Witness program.
§Errors
If the integer does not correspond to any witness version, errors with
Error::InvalidWitnessVersion
.
pub fn from_num(no: u8) -> Result<WitnessVersion, Error>
👎Deprecated since 0.29.0: use try_from instead
pub fn from_num(no: u8) -> Result<WitnessVersion, Error>
Converts an 8-bit unsigned integer value into WitnessVersion
variant.
§Returns
Version of the Witness program.
§Errors
If the integer does not correspond to any witness version, errors with
Error::InvalidWitnessVersion
.
pub fn from_opcode(opcode: All) -> Result<WitnessVersion, Error>
👎Deprecated since 0.29.0: use try_from instead
pub fn from_opcode(opcode: All) -> Result<WitnessVersion, Error>
Converts bitcoin script opcode into WitnessVersion
variant.
§Returns
Version of the Witness program (for opcodes in range of OP_0
..OP_16
).
§Errors
If the opcode does not correspond to any witness version, errors with
Error::MalformedWitnessVersion
.
pub fn from_instruction(
instruction: Instruction<'_>,
) -> Result<WitnessVersion, Error>
👎Deprecated since 0.29.0: use try_from instead
pub fn from_instruction( instruction: Instruction<'_>, ) -> Result<WitnessVersion, Error>
Converts bitcoin script Instruction
(parsed opcode) into WitnessVersion
variant.
§Returns
Version of the Witness program for Instruction::Op
and Instruction::PushBytes
with
byte value within 1..=16
range.
§Errors
If the opcode does not correspond to any witness version, errors with
Error::MalformedWitnessVersion
for the rest of opcodes.
pub fn into_num(self) -> u8
👎Deprecated since 0.29.0: use to_num instead
pub fn into_num(self) -> u8
Returns integer version number representation for a given WitnessVersion
value.
NB: this is not the same as an integer representation of the opcode signifying witness version in bitcoin script. Thus, there is no function to directly convert witness version into a byte since the conversion requires context (bitcoin script or just a version number).
pub fn to_num(self) -> u8
pub fn to_num(self) -> u8
Returns integer version number representation for a given WitnessVersion
value.
NB: this is not the same as an integer representation of the opcode signifying witness version in bitcoin script. Thus, there is no function to directly convert witness version into a byte since the conversion requires context (bitcoin script or just a version number).
pub fn bech32_variant(&self) -> Variant
pub fn bech32_variant(&self) -> Variant
Determines the checksum variant. See BIP-0350 for specification.
Trait Implementations§
§impl Clone for WitnessVersion
impl Clone for WitnessVersion
§fn clone(&self) -> WitnessVersion
fn clone(&self) -> WitnessVersion
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl Debug for WitnessVersion
impl Debug for WitnessVersion
§impl Display for WitnessVersion
impl Display for WitnessVersion
Prints WitnessVersion
number (from 0 to 16) as integer, without
any prefix or suffix.
§impl From<WitnessVersion> for All
impl From<WitnessVersion> for All
§fn from(version: WitnessVersion) -> All
fn from(version: WitnessVersion) -> All
Converts WitnessVersion
instance into corresponding Bitcoin scriptopcode (OP_0
..OP_16
).
§impl From<WitnessVersion> for u5
impl From<WitnessVersion> for u5
§fn from(version: WitnessVersion) -> u5
fn from(version: WitnessVersion) -> u5
Converts WitnessVersion
instance into corresponding Bech32(m) u5-value (bech32::u5
).
§impl FromStr for WitnessVersion
impl FromStr for WitnessVersion
§impl Hash for WitnessVersion
impl Hash for WitnessVersion
§impl Ord for WitnessVersion
impl Ord for WitnessVersion
§impl PartialEq for WitnessVersion
impl PartialEq for WitnessVersion
§impl PartialOrd for WitnessVersion
impl PartialOrd for WitnessVersion
§impl TryFrom<All> for WitnessVersion
impl TryFrom<All> for WitnessVersion
§fn try_from(
opcode: All,
) -> Result<WitnessVersion, <WitnessVersion as TryFrom<All>>::Error>
fn try_from( opcode: All, ) -> Result<WitnessVersion, <WitnessVersion as TryFrom<All>>::Error>
Converts bitcoin script opcode into WitnessVersion
variant.
§Returns
Version of the Witness program (for opcodes in range of OP_0
..OP_16
).
§Errors
If the opcode does not correspond to any witness version, errors with
Error::MalformedWitnessVersion
.
§impl<'a> TryFrom<Instruction<'a>> for WitnessVersion
impl<'a> TryFrom<Instruction<'a>> for WitnessVersion
§fn try_from(
instruction: Instruction<'_>,
) -> Result<WitnessVersion, <WitnessVersion as TryFrom<Instruction<'a>>>::Error>
fn try_from( instruction: Instruction<'_>, ) -> Result<WitnessVersion, <WitnessVersion as TryFrom<Instruction<'a>>>::Error>
Converts bitcoin script Instruction
(parsed opcode) into WitnessVersion
variant.
§Returns
Version of the Witness program for Instruction::Op
and Instruction::PushBytes
with
byte value within 1..=16
range.
§Errors
If the opcode does not correspond to any witness version, errors with
Error::MalformedWitnessVersion
for the rest of opcodes.
§impl TryFrom<u5> for WitnessVersion
impl TryFrom<u5> for WitnessVersion
§fn try_from(
value: u5,
) -> Result<WitnessVersion, <WitnessVersion as TryFrom<u5>>::Error>
fn try_from( value: u5, ) -> Result<WitnessVersion, <WitnessVersion as TryFrom<u5>>::Error>
Converts 5-bit unsigned integer value matching single symbol from Bech32(m) address encoding
(bech32::u5
) into WitnessVersion
variant.
§Returns
Version of the Witness program.
§Errors
If the integer does not correspond to any witness version, errors with
Error::InvalidWitnessVersion
.
§impl TryFrom<u8> for WitnessVersion
impl TryFrom<u8> for WitnessVersion
§fn try_from(
no: u8,
) -> Result<WitnessVersion, <WitnessVersion as TryFrom<u8>>::Error>
fn try_from( no: u8, ) -> Result<WitnessVersion, <WitnessVersion as TryFrom<u8>>::Error>
Converts an 8-bit unsigned integer value into WitnessVersion
variant.
§Returns
Version of the Witness program.
§Errors
If the integer does not correspond to any witness version, errors with
Error::InvalidWitnessVersion
.
impl Copy for WitnessVersion
impl Eq for WitnessVersion
impl StructuralPartialEq for WitnessVersion
Auto Trait Implementations§
impl Freeze for WitnessVersion
impl RefUnwindSafe for WitnessVersion
impl Send for WitnessVersion
impl Sync for WitnessVersion
impl Unpin for WitnessVersion
impl UnwindSafe for WitnessVersion
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§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
§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
key
and return true
if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request