pub struct MempoolTxContentOutputsInner {
pub address: String,
pub amount: Vec<TxContentOutputAmountInner>,
pub output_index: i32,
pub data_hash: Option<String>,
pub inline_datum: Option<String>,
pub collateral: bool,
pub reference_script_hash: Option<String>,
}Fields§
§address: StringOutput address
amount: Vec<TxContentOutputAmountInner>§output_index: i32UTXO index in the transaction
data_hash: Option<String>The hash of the transaction output datum
inline_datum: Option<String>CBOR encoded inline datum
collateral: boolWhether the output is a collateral output
reference_script_hash: Option<String>The hash of the reference script of the output
Implementations§
Trait Implementations§
Source§impl Clone for MempoolTxContentOutputsInner
impl Clone for MempoolTxContentOutputsInner
Source§fn clone(&self) -> MempoolTxContentOutputsInner
fn clone(&self) -> MempoolTxContentOutputsInner
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 MempoolTxContentOutputsInner
impl Debug for MempoolTxContentOutputsInner
Source§impl Default for MempoolTxContentOutputsInner
impl Default for MempoolTxContentOutputsInner
Source§fn default() -> MempoolTxContentOutputsInner
fn default() -> MempoolTxContentOutputsInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MempoolTxContentOutputsInner
impl<'de> Deserialize<'de> for MempoolTxContentOutputsInner
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 MempoolTxContentOutputsInner
impl PartialEq for MempoolTxContentOutputsInner
Source§fn eq(&self, other: &MempoolTxContentOutputsInner) -> bool
fn eq(&self, other: &MempoolTxContentOutputsInner) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MempoolTxContentOutputsInner
Auto Trait Implementations§
impl Freeze for MempoolTxContentOutputsInner
impl RefUnwindSafe for MempoolTxContentOutputsInner
impl Send for MempoolTxContentOutputsInner
impl Sync for MempoolTxContentOutputsInner
impl Unpin for MempoolTxContentOutputsInner
impl UnwindSafe for MempoolTxContentOutputsInner
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