pub struct GetMempoolClusterResponse {
pub chunks: Value,
pub clusterweight: u64,
pub txcount: u64,
}Expand description
Response for the GetMempoolCluster RPC method
Fields§
§chunks: Valuechunks in this cluster (in mining order)
clusterweight: u64total sigops-adjusted weight (as defined in BIP 141 and modified by ‘-bytespersigop’)
txcount: u64number of transactions
Trait Implementations§
Source§impl Clone for GetMempoolClusterResponse
impl Clone for GetMempoolClusterResponse
Source§fn clone(&self) -> GetMempoolClusterResponse
fn clone(&self) -> GetMempoolClusterResponse
Returns a duplicate 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 GetMempoolClusterResponse
impl Debug for GetMempoolClusterResponse
Source§impl<'de> Deserialize<'de> for GetMempoolClusterResponse
impl<'de> Deserialize<'de> for GetMempoolClusterResponse
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
impl StructuralPartialEq for GetMempoolClusterResponse
Auto Trait Implementations§
impl Freeze for GetMempoolClusterResponse
impl RefUnwindSafe for GetMempoolClusterResponse
impl Send for GetMempoolClusterResponse
impl Sync for GetMempoolClusterResponse
impl Unpin for GetMempoolClusterResponse
impl UnwindSafe for GetMempoolClusterResponse
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