pub struct SubgraphResult {
pub subgraph: HashMap<String, LeanEvent>,
pub missing_auth_events: Vec<String>,
}Expand description
Result of conflicted subgraph computation with diagnostic info.
Fields§
§subgraph: HashMap<String, LeanEvent>The computed conflicted subgraph.
missing_auth_events: Vec<String>Auth events referenced but not found in the graph (permanently lost to federation).
Trait Implementations§
Source§impl Clone for SubgraphResult
impl Clone for SubgraphResult
Source§fn clone(&self) -> SubgraphResult
fn clone(&self) -> SubgraphResult
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 moreAuto Trait Implementations§
impl Freeze for SubgraphResult
impl RefUnwindSafe for SubgraphResult
impl Send for SubgraphResult
impl Sync for SubgraphResult
impl Unpin for SubgraphResult
impl UnsafeUnpin for SubgraphResult
impl UnwindSafe for SubgraphResult
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