pub struct QueryConfig {
pub query: String,
pub agent_id: String,
pub top_k: usize,
pub dimensions: Vec<Dimension>,
pub xlr_enabled: bool,
pub include_ghost_edges: bool,
pub include_structural_holes: bool,
pub propagation: PropagationConfig,
}Expand description
Per-query configuration (maps to m1nd.activate input schema).
Fields§
§query: String§agent_id: String§top_k: usize§dimensions: Vec<Dimension>§xlr_enabled: bool§include_ghost_edges: bool§include_structural_holes: bool§propagation: PropagationConfigTrait Implementations§
Source§impl Clone for QueryConfig
impl Clone for QueryConfig
Source§fn clone(&self) -> QueryConfig
fn clone(&self) -> QueryConfig
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 QueryConfig
impl Debug for QueryConfig
Auto Trait Implementations§
impl Freeze for QueryConfig
impl RefUnwindSafe for QueryConfig
impl Send for QueryConfig
impl Sync for QueryConfig
impl Unpin for QueryConfig
impl UnsafeUnpin for QueryConfig
impl UnwindSafe for QueryConfig
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