pub struct ContributionNodeQueryResult {
pub nodes: Option<Value>,
pub provider_details: Option<Value>,
}
Expand description
Result of a contribution node query. Wraps the resulting contribution nodes and provider details.
Fields§
§nodes: Option<Value>
Map of contribution ids to corresponding node.
provider_details: Option<Value>
Map of provider ids to the corresponding provider details object.
Implementations§
Trait Implementations§
source§impl Clone for ContributionNodeQueryResult
impl Clone for ContributionNodeQueryResult
source§fn clone(&self) -> ContributionNodeQueryResult
fn clone(&self) -> ContributionNodeQueryResult
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 ContributionNodeQueryResult
impl Debug for ContributionNodeQueryResult
source§impl Default for ContributionNodeQueryResult
impl Default for ContributionNodeQueryResult
source§fn default() -> ContributionNodeQueryResult
fn default() -> ContributionNodeQueryResult
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ContributionNodeQueryResult
impl<'de> Deserialize<'de> for ContributionNodeQueryResult
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 ContributionNodeQueryResult
impl PartialEq for ContributionNodeQueryResult
source§fn eq(&self, other: &ContributionNodeQueryResult) -> bool
fn eq(&self, other: &ContributionNodeQueryResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ContributionNodeQueryResult
Auto Trait Implementations§
impl RefUnwindSafe for ContributionNodeQueryResult
impl Send for ContributionNodeQueryResult
impl Sync for ContributionNodeQueryResult
impl Unpin for ContributionNodeQueryResult
impl UnwindSafe for ContributionNodeQueryResult
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