Enum LeafVersion
pub enum LeafVersion {
TapScript,
Future(FutureLeafVersion),
}Expand description
The leaf version for tapleafs.
Variants§
Implementations§
§impl LeafVersion
impl LeafVersion
pub fn from_consensus(version: u8) -> Result<LeafVersion, TaprootError>
pub fn from_consensus(version: u8) -> Result<LeafVersion, TaprootError>
Creates a LeafVersion from consensus byte representation.
§Errors
- If the last bit of the
versionis odd. - If the
versionis 0x50 (TAPROOT_ANNEX_PREFIX).
pub fn to_consensus(self) -> u8
pub fn to_consensus(self) -> u8
Returns the consensus representation of this LeafVersion.
Trait Implementations§
§impl Clone for LeafVersion
impl Clone for LeafVersion
§fn clone(&self) -> LeafVersion
fn clone(&self) -> LeafVersion
Returns a duplicate 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 LeafVersion
impl Debug for LeafVersion
§impl<'de> Deserialize<'de> for LeafVersion
Deserializes LeafVersion as a u8 using consensus encoding.
impl<'de> Deserialize<'de> for LeafVersion
Deserializes LeafVersion as a u8 using consensus encoding.
§fn deserialize<D>(
deserializer: D,
) -> Result<LeafVersion, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<LeafVersion, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Display for LeafVersion
impl Display for LeafVersion
§impl Hash for LeafVersion
impl Hash for LeafVersion
§impl LowerHex for LeafVersion
impl LowerHex for LeafVersion
§impl Ord for LeafVersion
impl Ord for LeafVersion
§impl PartialEq for LeafVersion
impl PartialEq for LeafVersion
§impl PartialOrd for LeafVersion
impl PartialOrd for LeafVersion
§impl Serialize for LeafVersion
Serializes LeafVersion as a u8 using consensus encoding.
impl Serialize for LeafVersion
Serializes LeafVersion as a u8 using consensus encoding.
§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
§impl UpperHex for LeafVersion
impl UpperHex for LeafVersion
impl Copy for LeafVersion
impl Eq for LeafVersion
impl StructuralPartialEq for LeafVersion
Auto Trait Implementations§
impl Freeze for LeafVersion
impl RefUnwindSafe for LeafVersion
impl Send for LeafVersion
impl Sync for LeafVersion
impl Unpin for LeafVersion
impl UnwindSafe for LeafVersion
Blanket Implementations§
§impl<T> AnyEq for T
impl<T> AnyEq for T
§impl<T> AnySync for T
impl<T> AnySync for T
§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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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
Compare self to
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
Checks if this value is equivalent to the given key. 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
Compare self to
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
Checks if this value is equivalent to the given key. Read more
§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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§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>
Wrap the input message
T in a tonic::Request§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.