pub struct TransactionsInPool {
pub confirmed: u64,
pub unconfirmed: u16,
pub unprocessed: u16,
pub unsigned: u16,
pub total: u64,
}
Fields§
§confirmed: u64
§unconfirmed: u16
§unprocessed: u16
§unsigned: u16
§total: u64
Trait Implementations§
Source§impl Clone for TransactionsInPool
impl Clone for TransactionsInPool
Source§fn clone(&self) -> TransactionsInPool
fn clone(&self) -> TransactionsInPool
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 TransactionsInPool
impl Debug for TransactionsInPool
Source§impl Default for TransactionsInPool
impl Default for TransactionsInPool
Source§fn default() -> TransactionsInPool
fn default() -> TransactionsInPool
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransactionsInPool
impl<'de> Deserialize<'de> for TransactionsInPool
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 TransactionsInPool
impl PartialEq for TransactionsInPool
impl StructuralPartialEq for TransactionsInPool
Auto Trait Implementations§
impl Freeze for TransactionsInPool
impl RefUnwindSafe for TransactionsInPool
impl Send for TransactionsInPool
impl Sync for TransactionsInPool
impl Unpin for TransactionsInPool
impl UnwindSafe for TransactionsInPool
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