pub enum GraphBackend {
InMemory,
Simple,
KnowledgeGraph,
}Expand description
Available graph store backends.
Variants§
InMemory
Raw Arrow graph store — no defaults, no extras. Best for: tests, manual namespace management, maximum control.
Simple
Simple triple store with default namespace + Y-layer. Best for: single-namespace work, quick prototyping.
KnowledgeGraph
Full knowledge graph with prefix management and keyword search. Best for: being knowledge, ontology work, gap tracking.
Trait Implementations§
Source§impl Clone for GraphBackend
impl Clone for GraphBackend
Source§fn clone(&self) -> GraphBackend
fn clone(&self) -> GraphBackend
Returns a duplicate 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 GraphBackend
impl Debug for GraphBackend
Source§impl PartialEq for GraphBackend
impl PartialEq for GraphBackend
impl Copy for GraphBackend
impl Eq for GraphBackend
impl StructuralPartialEq for GraphBackend
Auto Trait Implementations§
impl Freeze for GraphBackend
impl RefUnwindSafe for GraphBackend
impl Send for GraphBackend
impl Sync for GraphBackend
impl Unpin for GraphBackend
impl UnsafeUnpin for GraphBackend
impl UnwindSafe for GraphBackend
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.