pub struct NavigateStep {
pub pix_name: String,
pub corpus_name: String,
pub query_expr: String,
pub trail_enabled: bool,
pub output_name: String,
pub seed: String,
pub budget: Option<i64>,
pub where_expr: String,
pub loc: Loc,
}Fields§
§pix_name: String§corpus_name: String§query_expr: String§trail_enabled: bool§output_name: String§seed: String§Fase 63.B — for MDN corpus-graph navigation: the seed document from:
to start the ε-informative traversal. Empty for PIX tree navigation.
budget: Option<i64>§Fase 63.B — for MDN: the budget: (max documents). None = default.
where_expr: String§Fase 66 (Q2) — optional column-scope filter (where:) for a
corpus from axonstore. A raw filter expr (same shape as retrieve … where) pushed to the SELECT sourcing the corpus rows, so an adopter
multiplexing sub-tenants in one axon-tenant via a column can scope the
MDN graph to a single sub-tenant. Empty = no column filter (RLS-only).
loc: LocTrait Implementations§
Auto Trait Implementations§
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> 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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.