pub enum RecoveryHints {
Off,
Minimal,
Full,
}Expand description
Controls the reactive recovery footer surfaced on compressed tool output
(ctx_read, archive/firewall/spill handles, ctx_shell tee).
The proactive RECOVER rule teaches the vocabulary once in the system
prompt; this knob governs the per-output reminder that names the concrete
file path / handle at point-of-need:
Minimal(default) — a single, non-MCP-first line on the first compressed view of a file/handle per session.Full— the richer ladder (mode=full·raw=true·ctx_retrieve·ctx_expand); used by theexploration/reviewprofiles.Off— suppresses the footer entirely (the proactive rule still ships, so reversibility is never undiscoverable).
Variants§
Implementations§
Source§impl RecoveryHints
impl RecoveryHints
Sourcepub fn parse(s: &str) -> Option<Self>
pub fn parse(s: &str) -> Option<Self>
Parse a config/env token. Returns None for unrecognized input so a typo
falls back to the default rather than silently disabling the feature.
Trait Implementations§
Source§impl Clone for RecoveryHints
impl Clone for RecoveryHints
Source§fn clone(&self) -> RecoveryHints
fn clone(&self) -> RecoveryHints
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RecoveryHints
Source§impl Debug for RecoveryHints
impl Debug for RecoveryHints
Source§impl Default for RecoveryHints
impl Default for RecoveryHints
Source§fn default() -> RecoveryHints
fn default() -> RecoveryHints
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecoveryHints
impl<'de> Deserialize<'de> for RecoveryHints
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
impl Eq for RecoveryHints
Source§impl PartialEq for RecoveryHints
impl PartialEq for RecoveryHints
Source§impl Serialize for RecoveryHints
impl Serialize for RecoveryHints
impl StructuralPartialEq for RecoveryHints
Auto Trait Implementations§
impl Freeze for RecoveryHints
impl RefUnwindSafe for RecoveryHints
impl Send for RecoveryHints
impl Sync for RecoveryHints
impl Unpin for RecoveryHints
impl UnsafeUnpin for RecoveryHints
impl UnwindSafe for RecoveryHints
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
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