pub enum TransactionAuthField {
PublicKey(Secp256k1PublicKey),
Signature(TransactionPublicKeyEncoding, MessageSignature),
}
Variants§
PublicKey(Secp256k1PublicKey)
Signature(TransactionPublicKeyEncoding, MessageSignature)
Implementations§
source§impl TransactionAuthField
impl TransactionAuthField
pub fn is_public_key(&self) -> bool
pub fn is_signature(&self) -> bool
pub fn as_public_key(&self) -> Option<Secp256k1PublicKey>
pub fn as_signature( &self ) -> Option<(TransactionPublicKeyEncoding, MessageSignature)>
pub fn get_public_key( &self, sighash_bytes: &[u8] ) -> Result<Secp256k1PublicKey, Error>
Trait Implementations§
source§impl Clone for TransactionAuthField
impl Clone for TransactionAuthField
source§fn clone(&self) -> TransactionAuthField
fn clone(&self) -> TransactionAuthField
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 Debug for TransactionAuthField
impl Debug for TransactionAuthField
source§impl<'de> Deserialize<'de> for TransactionAuthField
impl<'de> Deserialize<'de> for TransactionAuthField
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<TransactionAuthField, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<TransactionAuthField, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for TransactionAuthField
impl PartialEq for TransactionAuthField
source§fn eq(&self, other: &TransactionAuthField) -> bool
fn eq(&self, other: &TransactionAuthField) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TransactionAuthField
impl Serialize for TransactionAuthField
source§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
source§impl StacksMessageCodec for TransactionAuthField
impl StacksMessageCodec for TransactionAuthField
source§fn consensus_serialize<W>(&self, fd: &mut W) -> Result<(), Error>where
W: Write,
fn consensus_serialize<W>(&self, fd: &mut W) -> Result<(), Error>where W: Write,
serialize implementors should never error unless there is an underlying
failure in writing to the
fd
fn consensus_deserialize<R>(fd: &mut R) -> Result<TransactionAuthField, Error>where R: Read,
impl StructuralPartialEq for TransactionAuthField
Auto Trait Implementations§
impl RefUnwindSafe for TransactionAuthField
impl Send for TransactionAuthField
impl Sync for TransactionAuthField
impl Unpin for TransactionAuthField
impl UnwindSafe for TransactionAuthField
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