pub struct FederationGraph {
pub subgraphs: Vec<Subgraph>,
pub edges: Vec<Edge>,
}Expand description
Federation graph data
Fields§
§subgraphs: Vec<Subgraph>Subgraphs in the federation
edges: Vec<Edge>Edges representing entity relationships
Trait Implementations§
Source§impl Debug for FederationGraph
impl Debug for FederationGraph
Auto Trait Implementations§
impl Freeze for FederationGraph
impl RefUnwindSafe for FederationGraph
impl Send for FederationGraph
impl Sync for FederationGraph
impl Unpin for FederationGraph
impl UnwindSafe for FederationGraph
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