pub struct ProprietaryKey<Subtype = ProprietaryType>where
Subtype: Copy + From<u8> + Into<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§
source§impl<Subtype> Clone for ProprietaryKey<Subtype>where
Subtype: Copy + From<u8> + Into<u8> + Clone,
impl<Subtype> Clone for ProprietaryKey<Subtype>where Subtype: Copy + From<u8> + Into<u8> + Clone,
source§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 moresource§impl<Subtype> Debug for ProprietaryKey<Subtype>where
Subtype: Copy + From<u8> + Into<u8> + Debug,
impl<Subtype> Debug for ProprietaryKey<Subtype>where Subtype: Copy + From<u8> + Into<u8> + Debug,
source§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>,
source§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>,
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<Subtype> Encodable for ProprietaryKey<Subtype>where
Subtype: Copy + From<u8> + Into<u8>,
impl<Subtype> Encodable for ProprietaryKey<Subtype>where Subtype: Copy + From<u8> + Into<u8>,
source§impl<Subtype> Hash for ProprietaryKey<Subtype>where
Subtype: Copy + From<u8> + Into<u8> + Hash,
impl<Subtype> Hash for ProprietaryKey<Subtype>where Subtype: Copy + From<u8> + Into<u8> + Hash,
source§impl<Subtype> Ord for ProprietaryKey<Subtype>where
Subtype: Copy + From<u8> + Into<u8> + Ord,
impl<Subtype> Ord for ProprietaryKey<Subtype>where Subtype: Copy + From<u8> + Into<u8> + Ord,
source§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
source§impl<Subtype> PartialEq<ProprietaryKey<Subtype>> for ProprietaryKey<Subtype>where
Subtype: Copy + From<u8> + Into<u8> + PartialEq,
impl<Subtype> PartialEq<ProprietaryKey<Subtype>> for ProprietaryKey<Subtype>where Subtype: Copy + From<u8> + Into<u8> + PartialEq,
source§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 ==
.source§impl<Subtype> PartialOrd<ProprietaryKey<Subtype>> for ProprietaryKey<Subtype>where
Subtype: Copy + From<u8> + Into<u8> + PartialOrd,
impl<Subtype> PartialOrd<ProprietaryKey<Subtype>> for ProprietaryKey<Subtype>where Subtype: Copy + From<u8> + Into<u8> + PartialOrd,
source§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 moresource§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,
source§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>,
impl<Subtype> Eq for ProprietaryKey<Subtype>where Subtype: Copy + From<u8> + Into<u8> + Eq,
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