pub struct GraphWrapper { /* private fields */ }Expand description
Wrapper around ruvector GraphDB
Implementations§
Source§impl GraphWrapper
impl GraphWrapper
Sourcepub fn create_hyperedge(
&mut self,
entities: &[EntityId],
relation: &Relation,
) -> ExoResult<HyperedgeId>
pub fn create_hyperedge( &mut self, entities: &[EntityId], relation: &Relation, ) -> ExoResult<HyperedgeId>
Create a hyperedge spanning multiple entities
Sourcepub fn get_hyperedge(&self, id: &HyperedgeId) -> Option<Hyperedge>
pub fn get_hyperedge(&self, id: &HyperedgeId) -> Option<Hyperedge>
Get a hyperedge by ID
Sourcepub fn query(&self, query: &TopologicalQuery) -> ExoResult<HyperedgeResult>
pub fn query(&self, query: &TopologicalQuery) -> ExoResult<HyperedgeResult>
Query the graph with topological queries
Sourcepub fn hyperedges_containing(&self, node_id: &EntityId) -> Vec<Hyperedge>
pub fn hyperedges_containing(&self, node_id: &EntityId) -> Vec<Hyperedge>
Get hyperedges containing a specific node
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GraphWrapper
impl !RefUnwindSafe for GraphWrapper
impl Send for GraphWrapper
impl Sync for GraphWrapper
impl Unpin for GraphWrapper
impl !UnwindSafe for GraphWrapper
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more