pub struct PoolTxDetailInfo {
pub timestamp: Uint64,
pub entry_status: String,
pub rank_in_pending: Uint64,
pub pending_count: Uint64,
pub proposed_count: Uint64,
pub descendants_count: Uint64,
pub ancestors_count: Uint64,
pub score_sortkey: AncestorsScoreSortKey,
}
Expand description
A Tx details info in tx-pool.
Fields§
§timestamp: Uint64
The time added into tx-pool
entry_status: String
The detailed status in tx-pool, pending
, gap
, proposed
rank_in_pending: Uint64
The rank in pending, starting from 0
pending_count: Uint64
The pending(pending
and gap
) count
proposed_count: Uint64
The proposed count
descendants_count: Uint64
The descendants count of tx
ancestors_count: Uint64
The ancestors count of tx
score_sortkey: AncestorsScoreSortKey
The score key details, useful to debug
Trait Implementations§
Source§impl Clone for PoolTxDetailInfo
impl Clone for PoolTxDetailInfo
Source§fn clone(&self) -> PoolTxDetailInfo
fn clone(&self) -> PoolTxDetailInfo
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 PoolTxDetailInfo
impl Debug for PoolTxDetailInfo
Source§impl<'de> Deserialize<'de> for PoolTxDetailInfo
impl<'de> Deserialize<'de> for PoolTxDetailInfo
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 From<PoolTxDetailInfo> for PoolTxDetailInfo
impl From<PoolTxDetailInfo> for PoolTxDetailInfo
Source§fn from(info: CorePoolTxDetailInfo) -> Self
fn from(info: CorePoolTxDetailInfo) -> Self
Converts to this type from the input type.
Source§impl JsonSchema for PoolTxDetailInfo
impl JsonSchema for PoolTxDetailInfo
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreSource§impl PartialEq for PoolTxDetailInfo
impl PartialEq for PoolTxDetailInfo
Source§impl Serialize for PoolTxDetailInfo
impl Serialize for PoolTxDetailInfo
impl Eq for PoolTxDetailInfo
impl StructuralPartialEq for PoolTxDetailInfo
Auto Trait Implementations§
impl Freeze for PoolTxDetailInfo
impl RefUnwindSafe for PoolTxDetailInfo
impl Send for PoolTxDetailInfo
impl Sync for PoolTxDetailInfo
impl Unpin for PoolTxDetailInfo
impl UnwindSafe for PoolTxDetailInfo
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)