pub struct DecodeRawTransactionHexRisbScriptSig {
pub asm: Option<String>,
pub hex: Option<String>,
pub _type: Option<String>,
}Expand description
DecodeRawTransactionHexRisbScriptSig : Specifies the required signatures.
Fields§
§asm: Option<String>The asm strands for assembly, which is the symbolic representation of the Bitcoin’s Script language op-codes.
hex: Option<String>Represents the hex of the public key of the address.
_type: Option<String>Represents the script type of the reference transaction identifier.
Implementations§
Source§impl DecodeRawTransactionHexRisbScriptSig
impl DecodeRawTransactionHexRisbScriptSig
Sourcepub fn new() -> DecodeRawTransactionHexRisbScriptSig
pub fn new() -> DecodeRawTransactionHexRisbScriptSig
Specifies the required signatures.
Trait Implementations§
Source§impl Clone for DecodeRawTransactionHexRisbScriptSig
impl Clone for DecodeRawTransactionHexRisbScriptSig
Source§fn clone(&self) -> DecodeRawTransactionHexRisbScriptSig
fn clone(&self) -> DecodeRawTransactionHexRisbScriptSig
Returns a duplicate 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<'de> Deserialize<'de> for DecodeRawTransactionHexRisbScriptSig
impl<'de> Deserialize<'de> for DecodeRawTransactionHexRisbScriptSig
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 DecodeRawTransactionHexRisbScriptSig
impl PartialEq for DecodeRawTransactionHexRisbScriptSig
Source§fn eq(&self, other: &DecodeRawTransactionHexRisbScriptSig) -> bool
fn eq(&self, other: &DecodeRawTransactionHexRisbScriptSig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DecodeRawTransactionHexRisbScriptSig
Auto Trait Implementations§
impl Freeze for DecodeRawTransactionHexRisbScriptSig
impl RefUnwindSafe for DecodeRawTransactionHexRisbScriptSig
impl Send for DecodeRawTransactionHexRisbScriptSig
impl Sync for DecodeRawTransactionHexRisbScriptSig
impl Unpin for DecodeRawTransactionHexRisbScriptSig
impl UnwindSafe for DecodeRawTransactionHexRisbScriptSig
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