pub struct ScriptUtxosInner {
pub address: String,
pub tx_hash: String,
pub output_index: i32,
pub amount: Vec<TxContentOutputAmountInner>,
pub block: String,
pub data_hash: Option<String>,
pub inline_datum: Option<String>,
pub reference_script_hash: String,
}Fields§
§address: StringBech32 encoded address of the UTXO holding the reference script
tx_hash: StringTransaction hash of the UTXO
output_index: i32UTXO index in the transaction
amount: Vec<TxContentOutputAmountInner>§block: StringBlock hash of the UTXO
data_hash: Option<String>The hash of the transaction output datum
inline_datum: Option<String>CBOR encoded inline datum
reference_script_hash: StringThe hash of the reference script of the output. Equals the queried script hash.
Implementations§
Trait Implementations§
Source§impl Clone for ScriptUtxosInner
impl Clone for ScriptUtxosInner
Source§fn clone(&self) -> ScriptUtxosInner
fn clone(&self) -> ScriptUtxosInner
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScriptUtxosInner
impl Debug for ScriptUtxosInner
Source§impl Default for ScriptUtxosInner
impl Default for ScriptUtxosInner
Source§fn default() -> ScriptUtxosInner
fn default() -> ScriptUtxosInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScriptUtxosInner
impl<'de> Deserialize<'de> for ScriptUtxosInner
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 ScriptUtxosInner
impl PartialEq for ScriptUtxosInner
Source§impl Serialize for ScriptUtxosInner
impl Serialize for ScriptUtxosInner
impl StructuralPartialEq for ScriptUtxosInner
Auto Trait Implementations§
impl Freeze for ScriptUtxosInner
impl RefUnwindSafe for ScriptUtxosInner
impl Send for ScriptUtxosInner
impl Sync for ScriptUtxosInner
impl Unpin for ScriptUtxosInner
impl UnsafeUnpin for ScriptUtxosInner
impl UnwindSafe for ScriptUtxosInner
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