pub struct AddressUtxoContentInner {
pub address: String,
pub tx_hash: String,
pub tx_index: i32,
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: Option<String>,
}Fields§
§address: StringBech32 encoded addresses - useful when querying by payment_cred
tx_hash: StringTransaction hash of the UTXO
tx_index: i32UTXO index in the transaction
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: Option<String>The hash of the reference script of the output
Implementations§
Trait Implementations§
Source§impl Clone for AddressUtxoContentInner
impl Clone for AddressUtxoContentInner
Source§fn clone(&self) -> AddressUtxoContentInner
fn clone(&self) -> AddressUtxoContentInner
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 Debug for AddressUtxoContentInner
impl Debug for AddressUtxoContentInner
Source§impl Default for AddressUtxoContentInner
impl Default for AddressUtxoContentInner
Source§fn default() -> AddressUtxoContentInner
fn default() -> AddressUtxoContentInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AddressUtxoContentInner
impl<'de> Deserialize<'de> for AddressUtxoContentInner
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 AddressUtxoContentInner
impl PartialEq for AddressUtxoContentInner
Source§impl Serialize for AddressUtxoContentInner
impl Serialize for AddressUtxoContentInner
impl StructuralPartialEq for AddressUtxoContentInner
Auto Trait Implementations§
impl Freeze for AddressUtxoContentInner
impl RefUnwindSafe for AddressUtxoContentInner
impl Send for AddressUtxoContentInner
impl Sync for AddressUtxoContentInner
impl Unpin for AddressUtxoContentInner
impl UnwindSafe for AddressUtxoContentInner
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