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
impl StructuralPartialEq for ContributionNodeQueryResult
Auto Trait Implementations§
impl Freeze for ContributionNodeQueryResult
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