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 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 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 for SinglePubKey
impl PartialEq for SinglePubKey
Source§impl PartialOrd for SinglePubKey
impl PartialOrd for SinglePubKey
impl Eq for SinglePubKey
impl StructuralPartialEq for SinglePubKey
Auto Trait Implementations§
impl Freeze for SinglePubKey
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