pub struct PoolTransactionEntry {
pub transaction: TransactionView,
pub cycles: u64,
pub size: usize,
pub fee: Capacity,
pub timestamp: u64,
}
Expand description
Notify pool transaction entry
Fields§
§transaction: TransactionView
Transaction view
cycles: u64
Transaction consumed cycles
size: usize
Transaction serialized cycles
fee: Capacity
Transaction fee
timestamp: u64
The unix timestamp when entering the Txpool, unit: Millisecond
Trait Implementations§
Source§impl Clone for PoolTransactionEntry
impl Clone for PoolTransactionEntry
Source§fn clone(&self) -> PoolTransactionEntry
fn clone(&self) -> PoolTransactionEntry
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 PoolTransactionEntry
impl Debug for PoolTransactionEntry
Source§impl Hash for PoolTransactionEntry
impl Hash for PoolTransactionEntry
Source§impl PartialEq for PoolTransactionEntry
impl PartialEq for PoolTransactionEntry
impl Eq for PoolTransactionEntry
impl StructuralPartialEq for PoolTransactionEntry
Auto Trait Implementations§
impl !Freeze for PoolTransactionEntry
impl RefUnwindSafe for PoolTransactionEntry
impl Send for PoolTransactionEntry
impl Sync for PoolTransactionEntry
impl Unpin for PoolTransactionEntry
impl UnwindSafe for PoolTransactionEntry
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,
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