pub enum PoolTransaction {
Script(Checked<Script>),
Create(Checked<Create>),
}
Expand description
Transaction used by the transaction pool.
Variants§
Implementations§
Trait Implementations§
source§impl Chargeable for PoolTransaction
impl Chargeable for PoolTransaction
source§impl Debug for PoolTransaction
impl Debug for PoolTransaction
source§impl From<&PoolTransaction> for Transaction
impl From<&PoolTransaction> for Transaction
source§fn from(tx: &PoolTransaction) -> Self
fn from(tx: &PoolTransaction) -> Self
Converts to this type from the input type.
source§impl From<Checked<Create>> for PoolTransaction
impl From<Checked<Create>> for PoolTransaction
source§impl From<Checked<Script>> for PoolTransaction
impl From<Checked<Script>> for PoolTransaction
source§impl PartialEq<PoolTransaction> for PoolTransaction
impl PartialEq<PoolTransaction> for PoolTransaction
source§fn eq(&self, other: &PoolTransaction) -> bool
fn eq(&self, other: &PoolTransaction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.