Struct bdk_chain::bitcoin::psbt::raw::ProprietaryKey
pub struct ProprietaryKey<Subtype = u8>{
pub prefix: Vec<u8>,
pub subtype: Subtype,
pub key: Vec<u8>,
}
Expand description
Proprietary keys (i.e. keys starting with 0xFC byte) with their internal structure according to BIP 174.
Fields§
§prefix: Vec<u8>
Proprietary type prefix used for grouping together keys under some application and avoid namespace collision
subtype: Subtype
Custom proprietary subtype
key: Vec<u8>
Additional key bytes (like serialized public key data etc)
Implementations§
Trait Implementations§
§impl<Subtype> Clone for ProprietaryKey<Subtype>
impl<Subtype> Clone for ProprietaryKey<Subtype>
§fn clone(&self) -> ProprietaryKey<Subtype>
fn clone(&self) -> ProprietaryKey<Subtype>
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 more§impl<Subtype> Debug for ProprietaryKey<Subtype>
impl<Subtype> Debug for ProprietaryKey<Subtype>
§impl<Subtype> Decodable for ProprietaryKey<Subtype>
impl<Subtype> Decodable for ProprietaryKey<Subtype>
§fn consensus_decode<R>(r: &mut R) -> Result<ProprietaryKey<Subtype>, Error>
fn consensus_decode<R>(r: &mut R) -> Result<ProprietaryKey<Subtype>, Error>
Decode an object with a well-defined format. Read more
§impl<'de, Subtype> Deserialize<'de> for ProprietaryKey<Subtype>
impl<'de, Subtype> Deserialize<'de> for ProprietaryKey<Subtype>
§fn deserialize<__D>(
__deserializer: __D
) -> Result<ProprietaryKey<Subtype>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<ProprietaryKey<Subtype>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl<Subtype> Encodable for ProprietaryKey<Subtype>
impl<Subtype> Encodable for ProprietaryKey<Subtype>
§impl<Subtype> Hash for ProprietaryKey<Subtype>
impl<Subtype> Hash for ProprietaryKey<Subtype>
§impl<Subtype> Ord for ProprietaryKey<Subtype>
impl<Subtype> Ord for ProprietaryKey<Subtype>
§fn cmp(&self, other: &ProprietaryKey<Subtype>) -> Ordering
fn cmp(&self, other: &ProprietaryKey<Subtype>) -> 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
§impl<Subtype> PartialEq for ProprietaryKey<Subtype>
impl<Subtype> PartialEq for ProprietaryKey<Subtype>
§fn eq(&self, other: &ProprietaryKey<Subtype>) -> bool
fn eq(&self, other: &ProprietaryKey<Subtype>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl<Subtype> PartialOrd for ProprietaryKey<Subtype>
impl<Subtype> PartialOrd for ProprietaryKey<Subtype>
§fn partial_cmp(&self, other: &ProprietaryKey<Subtype>) -> Option<Ordering>
fn partial_cmp(&self, other: &ProprietaryKey<Subtype>) -> 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 more§impl<Subtype> Serialize for ProprietaryKey<Subtype>
impl<Subtype> Serialize for ProprietaryKey<Subtype>
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
§impl<Subtype> TryFrom<Key> for ProprietaryKey<Subtype>
impl<Subtype> TryFrom<Key> for ProprietaryKey<Subtype>
§fn try_from(
key: Key
) -> Result<ProprietaryKey<Subtype>, <ProprietaryKey<Subtype> as TryFrom<Key>>::Error>
fn try_from( key: Key ) -> Result<ProprietaryKey<Subtype>, <ProprietaryKey<Subtype> as TryFrom<Key>>::Error>
Constructs a ProprietaryKey
from a Key
.
§Errors
Returns Error::InvalidProprietaryKey
if key
does not start with 0xFC
byte.
impl<Subtype> Eq for ProprietaryKey<Subtype>
impl<Subtype> StructuralPartialEq for ProprietaryKey<Subtype>
Auto Trait Implementations§
impl<Subtype> Freeze for ProprietaryKey<Subtype>where
Subtype: Freeze,
impl<Subtype> RefUnwindSafe for ProprietaryKey<Subtype>where
Subtype: RefUnwindSafe,
impl<Subtype> Send for ProprietaryKey<Subtype>where
Subtype: Send,
impl<Subtype> Sync for ProprietaryKey<Subtype>where
Subtype: Sync,
impl<Subtype> Unpin for ProprietaryKey<Subtype>where
Subtype: Unpin,
impl<Subtype> UnwindSafe for ProprietaryKey<Subtype>where
Subtype: UnwindSafe,
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
§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