pub struct TransactionInfo {Show 16 fields
pub inputs: Vec<TxInInfo>,
pub reference_inputs: Vec<TxInInfo>,
pub outputs: Vec<TransactionOutput>,
pub fee: Lovelace,
pub mint: Value,
pub tx_certs: Vec<TxCert>,
pub wdrl: AssocMap<Credential, Lovelace>,
pub valid_range: POSIXTimeRange,
pub signatories: Vec<PaymentPubKeyHash>,
pub redeemers: AssocMap<ScriptPurpose, Redeemer>,
pub datums: AssocMap<DatumHash, Datum>,
pub id: TransactionHash,
pub votes: AssocMap<Voter, AssocMap<GovernanceActionId, Vote>>,
pub proposal_procedures: Vec<ProposalProcedure>,
pub current_treasury_amount: Option<Lovelace>,
pub treasury_donation: Option<Lovelace>,
}
Fields§
§inputs: Vec<TxInInfo>
§reference_inputs: Vec<TxInInfo>
§outputs: Vec<TransactionOutput>
§fee: Lovelace
§mint: Value
§tx_certs: Vec<TxCert>
§wdrl: AssocMap<Credential, Lovelace>
§valid_range: POSIXTimeRange
§signatories: Vec<PaymentPubKeyHash>
§redeemers: AssocMap<ScriptPurpose, Redeemer>
§datums: AssocMap<DatumHash, Datum>
§id: TransactionHash
§votes: AssocMap<Voter, AssocMap<GovernanceActionId, Vote>>
§proposal_procedures: Vec<ProposalProcedure>
§current_treasury_amount: Option<Lovelace>
§treasury_donation: Option<Lovelace>
Trait Implementations§
Source§impl Clone for TransactionInfo
impl Clone for TransactionInfo
Source§fn clone(&self) -> TransactionInfo
fn clone(&self) -> TransactionInfo
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 TransactionInfo
impl Debug for TransactionInfo
Source§impl IsPlutusData for TransactionInfo
impl IsPlutusData for TransactionInfo
fn to_plutus_data(&self) -> PlutusData
fn from_plutus_data(plutus_data: &PlutusData) -> Result<Self, PlutusDataError>where
Self: Sized,
Source§impl PartialEq for TransactionInfo
impl PartialEq for TransactionInfo
impl Eq for TransactionInfo
impl StructuralPartialEq for TransactionInfo
Auto Trait Implementations§
impl Freeze for TransactionInfo
impl RefUnwindSafe for TransactionInfo
impl Send for TransactionInfo
impl Sync for TransactionInfo
impl Unpin for TransactionInfo
impl UnwindSafe for TransactionInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more