Enum bitcoin::util::psbt::IncompleteTapTree
source · #[non_exhaustive]pub enum IncompleteTapTree {
NotFinalized(TaprootBuilder),
HiddenParts(TaprootBuilder),
}
Expand description
Error happening when TapTree
is constructed from a TaprootBuilder
having hidden branches or not being finalized.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
NotFinalized(TaprootBuilder)
Indicates an attempt to construct a tap tree from a builder containing incomplete branches.
HiddenParts(TaprootBuilder)
Indicates an attempt to construct a tap tree from a builder containing hidden parts.
Implementations§
source§impl IncompleteTapTree
impl IncompleteTapTree
sourcepub fn into_builder(self) -> TaprootBuilder
pub fn into_builder(self) -> TaprootBuilder
Converts error into the original incomplete TaprootBuilder
instance.
Trait Implementations§
source§impl Clone for IncompleteTapTree
impl Clone for IncompleteTapTree
source§fn clone(&self) -> IncompleteTapTree
fn clone(&self) -> IncompleteTapTree
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 IncompleteTapTree
impl Debug for IncompleteTapTree
source§impl Display for IncompleteTapTree
impl Display for IncompleteTapTree
source§impl Error for IncompleteTapTree
impl Error for IncompleteTapTree
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl Hash for IncompleteTapTree
impl Hash for IncompleteTapTree
source§impl Ord for IncompleteTapTree
impl Ord for IncompleteTapTree
source§fn cmp(&self, other: &IncompleteTapTree) -> Ordering
fn cmp(&self, other: &IncompleteTapTree) -> 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<IncompleteTapTree> for IncompleteTapTree
impl PartialEq<IncompleteTapTree> for IncompleteTapTree
source§fn eq(&self, other: &IncompleteTapTree) -> bool
fn eq(&self, other: &IncompleteTapTree) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<IncompleteTapTree> for IncompleteTapTree
impl PartialOrd<IncompleteTapTree> for IncompleteTapTree
source§fn partial_cmp(&self, other: &IncompleteTapTree) -> Option<Ordering>
fn partial_cmp(&self, other: &IncompleteTapTree) -> 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 Eq for IncompleteTapTree
impl StructuralEq for IncompleteTapTree
impl StructuralPartialEq for IncompleteTapTree
Auto Trait Implementations§
impl RefUnwindSafe for IncompleteTapTree
impl Send for IncompleteTapTree
impl Sync for IncompleteTapTree
impl Unpin for IncompleteTapTree
impl UnwindSafe for IncompleteTapTree
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