Enum clarity_repl::codec::TransactionAuthField
source · pub enum TransactionAuthField {
PublicKey(StacksPublicKey),
Signature(TransactionPublicKeyEncoding, MessageSignature),
}Variants§
PublicKey(StacksPublicKey)
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, CodecError>
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<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 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§impl StacksMessageCodec for TransactionAuthField
impl StacksMessageCodec for TransactionAuthField
source§fn consensus_serialize<W: Write>(&self, fd: &mut W) -> Result<(), CodecError>
fn consensus_serialize<W: Write>(&self, fd: &mut W) -> Result<(), CodecError>
serialize implementors should never error unless there is an underlying
failure in writing to the
fdfn consensus_deserialize<R: Read>( fd: &mut R ) -> Result<TransactionAuthField, CodecError>
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