pub struct TxpoolContentInfo {
pub pending: BTreeMap<Address, BTreeMap<String, Transaction>>,
pub queued: BTreeMap<Address, BTreeMap<String, Transaction>>,
}
Expand description
Transaction Pool Content Info
The content inspection property can be queried to list the exact details of all the transactions currently pending for inclusion in the next block(s), as well as the ones that are being scheduled for future execution only.
See here for more details
Fields§
§pending: BTreeMap<Address, BTreeMap<String, Transaction>>
pending tx
queued: BTreeMap<Address, BTreeMap<String, Transaction>>
queued tx
Trait Implementations§
Source§impl Clone for TxpoolContentInfo
impl Clone for TxpoolContentInfo
Source§fn clone(&self) -> TxpoolContentInfo
fn clone(&self) -> TxpoolContentInfo
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 TxpoolContentInfo
impl Debug for TxpoolContentInfo
Source§impl Default for TxpoolContentInfo
impl Default for TxpoolContentInfo
Source§fn default() -> TxpoolContentInfo
fn default() -> TxpoolContentInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TxpoolContentInfo
impl<'de> Deserialize<'de> for TxpoolContentInfo
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 PartialEq for TxpoolContentInfo
impl PartialEq for TxpoolContentInfo
Source§impl Serialize for TxpoolContentInfo
impl Serialize for TxpoolContentInfo
impl StructuralPartialEq for TxpoolContentInfo
Auto Trait Implementations§
impl Freeze for TxpoolContentInfo
impl RefUnwindSafe for TxpoolContentInfo
impl Send for TxpoolContentInfo
impl Sync for TxpoolContentInfo
impl Unpin for TxpoolContentInfo
impl UnwindSafe for TxpoolContentInfo
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