pub struct FeatureFlags {
pub entity_extraction: bool,
pub relationship_extraction: bool,
pub query_expansion: bool,
pub pagerank_scoring: bool,
pub path_based_retrieval: bool,
pub result_diversification: bool,
pub semantic_search: bool,
pub graph_reranking: bool,
pub incremental_updates: bool,
pub distributed_processing: bool,
}Expand description
Feature flags for enabling/disabling functionality
Fields§
§entity_extraction: boolEnable entity extraction
relationship_extraction: boolEnable relationship extraction
query_expansion: boolEnable query expansion
pagerank_scoring: boolEnable PageRank scoring
path_based_retrieval: boolEnable path-based retrieval
result_diversification: boolEnable result diversification
semantic_search: boolEnable semantic search
graph_reranking: boolEnable graph-based re-ranking
incremental_updates: boolEnable incremental updates
distributed_processing: boolEnable distributed processing
Trait Implementations§
Source§impl Clone for FeatureFlags
impl Clone for FeatureFlags
Source§fn clone(&self) -> FeatureFlags
fn clone(&self) -> FeatureFlags
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 FeatureFlags
impl Debug for FeatureFlags
Source§impl Default for FeatureFlags
impl Default for FeatureFlags
Source§impl<'de> Deserialize<'de> for FeatureFlags
impl<'de> Deserialize<'de> for FeatureFlags
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FeatureFlags
impl RefUnwindSafe for FeatureFlags
impl Send for FeatureFlags
impl Sync for FeatureFlags
impl Unpin for FeatureFlags
impl UnwindSafe for FeatureFlags
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