pub struct IndexerNode {
pub children: Option<HashMap<String, String>>,
pub txid: Option<String>,
}Fields§
§children: Option<HashMap<String, String>>vout -> txid
txid: Option<String>Implementations§
Source§impl IndexerNode
impl IndexerNode
pub fn new() -> IndexerNode
Trait Implementations§
Source§impl Clone for IndexerNode
impl Clone for IndexerNode
Source§fn clone(&self) -> IndexerNode
fn clone(&self) -> IndexerNode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IndexerNode
impl Debug for IndexerNode
Source§impl Default for IndexerNode
impl Default for IndexerNode
Source§fn default() -> IndexerNode
fn default() -> IndexerNode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IndexerNode
impl<'de> Deserialize<'de> for IndexerNode
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 IndexerNode
impl PartialEq for IndexerNode
Source§fn eq(&self, other: &IndexerNode) -> bool
fn eq(&self, other: &IndexerNode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IndexerNode
impl Serialize for IndexerNode
impl StructuralPartialEq for IndexerNode
Auto Trait Implementations§
impl Freeze for IndexerNode
impl RefUnwindSafe for IndexerNode
impl Send for IndexerNode
impl Sync for IndexerNode
impl Unpin for IndexerNode
impl UnsafeUnpin for IndexerNode
impl UnwindSafe for IndexerNode
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