pub struct FullKnowledgeGraphResponse {
pub nodes: Vec<FullGraphNode>,
pub edges: Vec<FullGraphEdge>,
pub clusters: Vec<GraphCluster>,
pub stats: GraphStats,
}Expand description
Response from full knowledge graph query
Fields§
§nodes: Vec<FullGraphNode>§edges: Vec<FullGraphEdge>§clusters: Vec<GraphCluster>§stats: GraphStatsTrait Implementations§
Source§impl Debug for FullKnowledgeGraphResponse
impl Debug for FullKnowledgeGraphResponse
Auto Trait Implementations§
impl Freeze for FullKnowledgeGraphResponse
impl RefUnwindSafe for FullKnowledgeGraphResponse
impl Send for FullKnowledgeGraphResponse
impl Sync for FullKnowledgeGraphResponse
impl Unpin for FullKnowledgeGraphResponse
impl UnsafeUnpin for FullKnowledgeGraphResponse
impl UnwindSafe for FullKnowledgeGraphResponse
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