Struct sc_transaction_graph::base_pool::Transaction[][src]

pub struct Transaction<Hash, Extrinsic> {
    pub data: Extrinsic,
    pub bytes: usize,
    pub hash: Hash,
    pub priority: Priority,
    pub valid_till: Longevity,
    pub requires: Vec<Tag>,
    pub provides: Vec<Tag>,
    pub propagate: bool,
    pub source: Source,
}

Immutable transaction

Fields

data: Extrinsic

Raw extrinsic representing that transaction.

bytes: usize

Number of bytes encoding of the transaction requires.

hash: Hash

Transaction hash (unique)

priority: Priority

Transaction priority (higher = better)

valid_till: Longevity

At which block the transaction becomes invalid?

requires: Vec<Tag>

Tags required by the transaction.

provides: Vec<Tag>

Tags that this transaction provides.

propagate: bool

Should that transaction be propagated.

source: Source

Source of that transaction.

Implementations

impl<Hash: Clone, Extrinsic: Clone> Transaction<Hash, Extrinsic>[src]

pub fn duplicate(&self) -> Self[src]

Explicit transaction clone.

Transaction should be cloned only if absolutely necessary && we want every reason to be commented. That's why we Transaction is not Clone, but there's explicit duplicate method.

Trait Implementations

impl<Hash, Extrinsic> AsRef<Extrinsic> for Transaction<Hash, Extrinsic>[src]

impl<Hash, Extrinsic> Debug for Transaction<Hash, Extrinsic> where
    Hash: Debug,
    Extrinsic: Debug
[src]

impl<Hash: Eq, Extrinsic: Eq> Eq for Transaction<Hash, Extrinsic>[src]

impl<Hash, Extrinsic> InPoolTransaction for Transaction<Hash, Extrinsic>[src]

type Transaction = Extrinsic

Transaction type.

type Hash = Hash

Transaction hash type.

impl<Hash, Extrinsic> MallocSizeOf for Transaction<Hash, Extrinsic> where
    Hash: MallocSizeOf,
    Extrinsic: MallocSizeOf
[src]

impl<Hash: PartialEq, Extrinsic: PartialEq> PartialEq<Transaction<Hash, Extrinsic>> for Transaction<Hash, Extrinsic>[src]

impl<Hash, Extrinsic> StructuralEq for Transaction<Hash, Extrinsic>[src]

impl<Hash, Extrinsic> StructuralPartialEq for Transaction<Hash, Extrinsic>[src]

Auto Trait Implementations

impl<Hash, Extrinsic> RefUnwindSafe for Transaction<Hash, Extrinsic> where
    Extrinsic: RefUnwindSafe,
    Hash: RefUnwindSafe
[src]

impl<Hash, Extrinsic> Send for Transaction<Hash, Extrinsic> where
    Extrinsic: Send,
    Hash: Send
[src]

impl<Hash, Extrinsic> Sync for Transaction<Hash, Extrinsic> where
    Extrinsic: Sync,
    Hash: Sync
[src]

impl<Hash, Extrinsic> Unpin for Transaction<Hash, Extrinsic> where
    Extrinsic: Unpin,
    Hash: Unpin
[src]

impl<Hash, Extrinsic> UnwindSafe for Transaction<Hash, Extrinsic> where
    Extrinsic: UnwindSafe,
    Hash: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, U> AsByteSlice<T> for U where
    T: ToByteSlice,
    U: AsRef<[T]> + ?Sized

impl<U> AsSliceOf for U where
    U: AsRef<[u8]> + ?Sized

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CheckedConversion for T[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, Outer> IsWrappedBy<Outer> for T where
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, 
[src]

pub fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

pub fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> MallocSizeOfExt for T where
    T: MallocSizeOf
[src]

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeMallocSizeOf for T where
    T: MallocSizeOf
[src]

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe

impl<T> ProtocolName for T where
    T: AsRef<[u8]>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatedConversion for T

impl<T> ToHex for T where
    T: AsRef<[u8]>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    T: Bounded,
    S: TryInto<T>, 

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,