pub struct TxpoolContent<T = Transaction> {
pub pending: BTreeMap<Address, BTreeMap<String, T>>,
pub queued: BTreeMap<Address, BTreeMap<String, T>>,
}
Expand description
Transaction Pool Content
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, T>>
pending tx
queued: BTreeMap<Address, BTreeMap<String, T>>
queued tx
Implementations§
Source§impl<T> TxpoolContent<T>
impl<T> TxpoolContent<T>
Sourcepub fn remove_from(&mut self, sender: &Address) -> TxpoolContentFrom<T>
pub fn remove_from(&mut self, sender: &Address) -> TxpoolContentFrom<T>
Removes the transactions from the given sender
Trait Implementations§
Source§impl<T: Clone> Clone for TxpoolContent<T>
impl<T: Clone> Clone for TxpoolContent<T>
Source§fn clone(&self) -> TxpoolContent<T>
fn clone(&self) -> TxpoolContent<T>
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<T: Debug> Debug for TxpoolContent<T>
impl<T: Debug> Debug for TxpoolContent<T>
Source§impl<T> Default for TxpoolContent<T>
impl<T> Default for TxpoolContent<T>
Source§impl<'de, T> Deserialize<'de> for TxpoolContent<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for TxpoolContent<T>where
T: Deserialize<'de>,
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<T: PartialEq> PartialEq for TxpoolContent<T>
impl<T: PartialEq> PartialEq for TxpoolContent<T>
Source§impl<T> Serialize for TxpoolContent<T>where
T: Serialize,
impl<T> Serialize for TxpoolContent<T>where
T: Serialize,
impl<T: Eq> Eq for TxpoolContent<T>
impl<T> StructuralPartialEq for TxpoolContent<T>
Auto Trait Implementations§
impl<T> Freeze for TxpoolContent<T>
impl<T> RefUnwindSafe for TxpoolContent<T>where
T: RefUnwindSafe,
impl<T> Send for TxpoolContent<T>where
T: Send,
impl<T> Sync for TxpoolContent<T>where
T: Sync,
impl<T> Unpin for TxpoolContent<T>
impl<T> UnwindSafe for TxpoolContent<T>where
T: RefUnwindSafe,
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
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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