pub struct CurrentConfig {
pub active_embedding_profile: Option<EmbeddingProfileSummary>,
pub vec_kinds: BTreeMap<String, VecKindConfig>,
pub fts_kinds: BTreeMap<String, FtsKindConfig>,
pub work_queue: WorkQueueSummary,
}Expand description
Snapshot of the runtime configuration that drives vector / FTS projection behaviour.
Fields§
§active_embedding_profile: Option<EmbeddingProfileSummary>Currently active embedding profile row, if any.
vec_kinds: BTreeMap<String, VecKindConfig>All rows in vector_index_schemas, keyed by kind.
fts_kinds: BTreeMap<String, FtsKindConfig>All FTS profiles (from projection_profiles where facet=‘fts’),
keyed by kind.
work_queue: WorkQueueSummaryBulk counts across vector_projection_work.
Trait Implementations§
Source§impl Clone for CurrentConfig
impl Clone for CurrentConfig
Source§fn clone(&self) -> CurrentConfig
fn clone(&self) -> CurrentConfig
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 CurrentConfig
impl Debug for CurrentConfig
Source§impl PartialEq for CurrentConfig
impl PartialEq for CurrentConfig
Source§impl Serialize for CurrentConfig
impl Serialize for CurrentConfig
impl Eq for CurrentConfig
impl StructuralPartialEq for CurrentConfig
Auto Trait Implementations§
impl Freeze for CurrentConfig
impl RefUnwindSafe for CurrentConfig
impl Send for CurrentConfig
impl Sync for CurrentConfig
impl Unpin for CurrentConfig
impl UnsafeUnpin for CurrentConfig
impl UnwindSafe for CurrentConfig
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.