pub enum SignerId {
PkHash(Hash),
Fingerprint(Fingerprint),
Dummy(u64),
}
Expand description
Identifier of a signer in the SignersContainers
. Used as a key to find the right signer among
multiple of them
Variants§
PkHash(Hash)
Bitcoin HASH160 (RIPEMD160 after SHA256) hash of an ECDSA public key
Fingerprint(Fingerprint)
The fingerprint of a BIP32 extended key
Dummy(u64)
Dummy identifier
Trait Implementations§
Source§impl Ord for SignerId
impl Ord for SignerId
Source§impl PartialOrd for SignerId
impl PartialOrd for SignerId
impl Eq for SignerId
impl StructuralPartialEq for SignerId
Auto Trait Implementations§
impl Freeze for SignerId
impl RefUnwindSafe for SignerId
impl Send for SignerId
impl Sync for SignerId
impl Unpin for SignerId
impl UnwindSafe for SignerId
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§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