pub struct ProblemClassifierSuggestor;Expand description
Suggestor that classifies the dominant problem shape from seeds and signals already in convergence context.
Inputs: ContextKey::Seeds, ContextKey::Signals (optional).
Outputs: one ContextKey::Hypotheses fact carrying the
ProblemClassification as JSON.
Idempotent: re-running on a context that already contains a
problem-class: hypothesis is a no-op (the predicate stops accepting).
Implementations§
Trait Implementations§
Source§impl Default for ProblemClassifierSuggestor
impl Default for ProblemClassifierSuggestor
Source§impl Suggestor for ProblemClassifierSuggestor
impl Suggestor for ProblemClassifierSuggestor
Source§fn name(&self) -> &'static str
fn name(&self) -> &'static str
Human-readable name, used for logging and provenance. Read more
Source§fn dependencies(&self) -> &[ContextKey]
fn dependencies(&self) -> &[ContextKey]
Context keys this suggestor reads from. Read more
Source§fn provenance(&self) -> Provenance
fn provenance(&self) -> Provenance
Typed provenance for this suggestor’s emitted facts and execution span. Read more
Source§fn accepts(&self, ctx: &dyn Context) -> bool
fn accepts(&self, ctx: &dyn Context) -> bool
Pure predicate: should this suggestor execute given the current context? Read more
Auto Trait Implementations§
impl Freeze for ProblemClassifierSuggestor
impl RefUnwindSafe for ProblemClassifierSuggestor
impl Send for ProblemClassifierSuggestor
impl Sync for ProblemClassifierSuggestor
impl Unpin for ProblemClassifierSuggestor
impl UnsafeUnpin for ProblemClassifierSuggestor
impl UnwindSafe for ProblemClassifierSuggestor
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 more