pub enum GraphBackend {
InMemory,
Simple,
KnowledgeGraph,
}Expand description
Available graph store backends.
Variants§
InMemory
Raw Arrow graph store — no defaults, no extras.
Simple
Simple triple store with default namespace + layer.
KnowledgeGraph
Full knowledge graph with prefix management and keyword search.
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§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.