pub struct GetMempoolDescendantsVerbose(pub BTreeMap<String, MempoolEntry>);Expand description
Result of JSON-RPC method getmempooldescendants with verbose set to true.
Map of txid to MempoolEntry i.e., a descendant.
Tuple Fields§
§0: BTreeMap<String, MempoolEntry>Implementations§
Source§impl GetMempoolDescendantsVerbose
impl GetMempoolDescendantsVerbose
Sourcepub fn into_model(
self,
) -> Result<GetMempoolDescendantsVerbose, MapMempoolEntryError>
pub fn into_model( self, ) -> Result<GetMempoolDescendantsVerbose, MapMempoolEntryError>
Converts version specific type to a version nonspecific, more strongly typed type.
Trait Implementations§
Source§impl Clone for GetMempoolDescendantsVerbose
impl Clone for GetMempoolDescendantsVerbose
Source§fn clone(&self) -> GetMempoolDescendantsVerbose
fn clone(&self) -> GetMempoolDescendantsVerbose
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 GetMempoolDescendantsVerbose
impl Debug for GetMempoolDescendantsVerbose
Source§impl<'de> Deserialize<'de> for GetMempoolDescendantsVerbose
impl<'de> Deserialize<'de> for GetMempoolDescendantsVerbose
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetMempoolDescendantsVerbose, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetMempoolDescendantsVerbose, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GetMempoolDescendantsVerbose
impl PartialEq for GetMempoolDescendantsVerbose
Source§fn eq(&self, other: &GetMempoolDescendantsVerbose) -> bool
fn eq(&self, other: &GetMempoolDescendantsVerbose) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GetMempoolDescendantsVerbose
impl Serialize for GetMempoolDescendantsVerbose
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for GetMempoolDescendantsVerbose
Auto Trait Implementations§
impl Freeze for GetMempoolDescendantsVerbose
impl RefUnwindSafe for GetMempoolDescendantsVerbose
impl Send for GetMempoolDescendantsVerbose
impl Sync for GetMempoolDescendantsVerbose
impl Unpin for GetMempoolDescendantsVerbose
impl UnsafeUnpin for GetMempoolDescendantsVerbose
impl UnwindSafe for GetMempoolDescendantsVerbose
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