Struct nostr_sdk::bitcoin::psbt::raw::ProprietaryKey
pub struct ProprietaryKey<Subtype = u8>where
Subtype: Copy + From<u8> + Into<u8>,{
pub prefix: Vec<u8, Global>,
pub subtype: Subtype,
pub key: Vec<u8, Global>,
}
Expand description
Proprietary keys (i.e. keys starting with 0xFC byte) with their internal structure according to BIP 174.
Fields§
§prefix: Vec<u8, Global>
Proprietary type prefix used for grouping together keys under some application and avoid namespace collision
subtype: Subtype
Custom proprietary subtype
key: Vec<u8, Global>
Additional key bytes (like serialized public key data etc)
Implementations§
Trait Implementations§
§impl<Subtype> Clone for ProprietaryKey<Subtype>where
Subtype: Clone + Copy + From<u8> + Into<u8>,
impl<Subtype> Clone for ProprietaryKey<Subtype>where Subtype: Clone + Copy + From<u8> + Into<u8>,
§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> Decodable for ProprietaryKey<Subtype>where
Subtype: Copy + From<u8> + Into<u8>,
impl<Subtype> Decodable for ProprietaryKey<Subtype>where Subtype: Copy + From<u8> + Into<u8>,
§fn consensus_decode<R>(r: &mut R) -> Result<ProprietaryKey<Subtype>, Error>where
R: Read + ?Sized,
fn consensus_decode<R>(r: &mut R) -> Result<ProprietaryKey<Subtype>, Error>where R: Read + ?Sized,
Decode an object with a well-defined format. Read more
§impl<'de, Subtype> Deserialize<'de> for ProprietaryKey<Subtype>where
Subtype: Copy + From<u8> + Into<u8> + Deserialize<'de>,
impl<'de, Subtype> Deserialize<'de> for ProprietaryKey<Subtype>where Subtype: Copy + From<u8> + Into<u8> + Deserialize<'de>,
§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> Ord for ProprietaryKey<Subtype>where
Subtype: Ord + Copy + From<u8> + Into<u8>,
impl<Subtype> Ord for ProprietaryKey<Subtype>where Subtype: Ord + Copy + From<u8> + Into<u8>,
§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<ProprietaryKey<Subtype>> for ProprietaryKey<Subtype>where
Subtype: PartialEq<Subtype> + Copy + From<u8> + Into<u8>,
impl<Subtype> PartialEq<ProprietaryKey<Subtype>> for ProprietaryKey<Subtype>where Subtype: PartialEq<Subtype> + Copy + From<u8> + Into<u8>,
§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<ProprietaryKey<Subtype>> for ProprietaryKey<Subtype>where
Subtype: PartialOrd<Subtype> + Copy + From<u8> + Into<u8>,
impl<Subtype> PartialOrd<ProprietaryKey<Subtype>> for ProprietaryKey<Subtype>where Subtype: PartialOrd<Subtype> + Copy + From<u8> + Into<u8>,
§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>where
Subtype: Copy + From<u8> + Into<u8> + Serialize,
impl<Subtype> Serialize for ProprietaryKey<Subtype>where Subtype: Copy + From<u8> + Into<u8> + Serialize,
§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>where
Subtype: Copy + From<u8> + Into<u8>,
impl<Subtype> TryFrom<Key> for ProprietaryKey<Subtype>where Subtype: Copy + From<u8> + Into<u8>,
§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>where Subtype: Eq + Copy + From<u8> + Into<u8>,
impl<Subtype> StructuralEq for ProprietaryKey<Subtype>where Subtype: Copy + From<u8> + Into<u8>,
impl<Subtype> StructuralPartialEq for ProprietaryKey<Subtype>where Subtype: Copy + From<u8> + Into<u8>,
Auto Trait Implementations§
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.