Enum miniscript::descriptor::SinglePubKey
source · pub enum SinglePubKey {
FullKey(PublicKey),
XOnly(XOnlyPublicKey),
}
Expand description
Single public key without any origin or range information.
Variants§
FullKey(PublicKey)
A bitcoin public key (compressed or uncompressed).
XOnly(XOnlyPublicKey)
An xonly public key.
Trait Implementations§
source§impl Clone for SinglePubKey
impl Clone for SinglePubKey
source§fn clone(&self) -> SinglePubKey
fn clone(&self) -> SinglePubKey
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 SinglePubKey
impl Debug for SinglePubKey
source§impl Hash for SinglePubKey
impl Hash for SinglePubKey
source§impl Ord for SinglePubKey
impl Ord for SinglePubKey
source§fn cmp(&self, other: &SinglePubKey) -> Ordering
fn cmp(&self, other: &SinglePubKey) -> 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<SinglePubKey> for SinglePubKey
impl PartialEq<SinglePubKey> for SinglePubKey
source§fn eq(&self, other: &SinglePubKey) -> bool
fn eq(&self, other: &SinglePubKey) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<SinglePubKey> for SinglePubKey
impl PartialOrd<SinglePubKey> for SinglePubKey
source§fn partial_cmp(&self, other: &SinglePubKey) -> Option<Ordering>
fn partial_cmp(&self, other: &SinglePubKey) -> 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 SinglePubKey
impl StructuralEq for SinglePubKey
impl StructuralPartialEq for SinglePubKey
Auto Trait Implementations§
impl RefUnwindSafe for SinglePubKey
impl Send for SinglePubKey
impl Sync for SinglePubKey
impl Unpin for SinglePubKey
impl UnwindSafe for SinglePubKey
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