pub enum EngineId {
Show 15 variants
Vector,
Graph,
DocumentSchemaless,
DocumentStrict,
Kv,
Columnar,
Timeseries,
Spatial,
Array,
Fts,
Sparse,
Crdt,
Query,
Wal,
Bridge,
}Expand description
Identifies a subsystem that owns a memory budget.
Each engine operates within its allocated memory ceiling. The governor tracks allocations per engine and rejects requests that would exceed the budget.
Covers all eight peer engines (Document schemaless, Document strict, KV, Columnar, Timeseries, Spatial, Vector, Array), plus the two cross-engine overlays (Graph, Fts), plus infrastructure subsystems (Sparse metadata, Crdt, Query, Wal, Bridge).
Variants§
Vector
HNSW vector index, distance computation buffers, quantized caches.
Graph
CSR adjacency index, traversal algorithm working sets (cross-engine overlay).
DocumentSchemaless
Document (schemaless): MessagePack blobs, secondary index buffers.
DocumentStrict
Document (strict): Binary Tuple encode/decode buffers, schema metadata.
Kv
Key-Value engine: hash index buckets, TTL expiry wheel.
Columnar
Columnar engine: compressed segment build buffers, block statistics.
Timeseries
Gorilla-encoded memtables, Zstd dictionaries, log buffers.
Spatial
R*-tree node pools, geohash / H3 index structures.
Array
Array engine (ND sparse): tile decompression buffers, coordinate arrays.
Fts
FTS LSM memtable, posting lists, compaction merge buffers (cross-engine overlay).
Sparse
redb B-Tree, splintr inverted index, schema metadata (sparse/metadata engine).
Crdt
loro CRDT state, merge buffers, operation logs.
Query
DataFusion query execution: sorts, aggregates, hash tables.
Wal
WAL write buffers, group commit staging.
Bridge
SPSC bridge buffers, slab allocator, envelope staging.
Implementations§
Trait Implementations§
impl Copy for EngineId
impl Eq for EngineId
impl StructuralPartialEq for EngineId
Auto Trait Implementations§
impl Freeze for EngineId
impl RefUnwindSafe for EngineId
impl Send for EngineId
impl Sync for EngineId
impl Unpin for EngineId
impl UnsafeUnpin for EngineId
impl UnwindSafe for EngineId
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
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
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<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> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Source§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
Source§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
Source§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
out indicating that a T is niched.Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self to the equivalent element of its superset.