Enum miniscript::descriptor::DescriptorType
source · pub enum DescriptorType {
Bare,
Sh,
Pkh,
Wpkh,
Wsh,
ShWsh,
ShWpkh,
ShSortedMulti,
WshSortedMulti,
ShWshSortedMulti,
Tr,
}
Expand description
Descriptor Type of the descriptor
Variants§
Bare
Bare descriptor(Contains the native P2pk)
Sh
Pure Sh Descriptor. Does not contain nested Wsh/Wpkh
Pkh
Pkh Descriptor
Wpkh
Wpkh Descriptor
Wsh
Wsh
ShWsh
Sh Wrapped Wsh
ShWpkh
Sh wrapped Wpkh
ShSortedMulti
Sh Sorted Multi
WshSortedMulti
Wsh Sorted Multi
ShWshSortedMulti
Sh Wsh Sorted Multi
Tr
Tr Descriptor
Implementations§
source§impl DescriptorType
impl DescriptorType
sourcepub fn segwit_version(&self) -> Option<WitnessVersion>
pub fn segwit_version(&self) -> Option<WitnessVersion>
Returns the segwit version implied by the descriptor type.
This will return Some(WitnessVersion::V0)
whether it is “native” segwitv0 or “wrapped” p2sh segwit.
Trait Implementations§
source§impl Clone for DescriptorType
impl Clone for DescriptorType
source§fn clone(&self) -> DescriptorType
fn clone(&self) -> DescriptorType
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 DescriptorType
impl Debug for DescriptorType
source§impl Hash for DescriptorType
impl Hash for DescriptorType
source§impl Ord for DescriptorType
impl Ord for DescriptorType
source§fn cmp(&self, other: &DescriptorType) -> Ordering
fn cmp(&self, other: &DescriptorType) -> 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<DescriptorType> for DescriptorType
impl PartialEq<DescriptorType> for DescriptorType
source§fn eq(&self, other: &DescriptorType) -> bool
fn eq(&self, other: &DescriptorType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<DescriptorType> for DescriptorType
impl PartialOrd<DescriptorType> for DescriptorType
source§fn partial_cmp(&self, other: &DescriptorType) -> Option<Ordering>
fn partial_cmp(&self, other: &DescriptorType) -> 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 DescriptorType
impl Eq for DescriptorType
impl StructuralEq for DescriptorType
impl StructuralPartialEq for DescriptorType
Auto Trait Implementations§
impl RefUnwindSafe for DescriptorType
impl Send for DescriptorType
impl Sync for DescriptorType
impl Unpin for DescriptorType
impl UnwindSafe for DescriptorType
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