pub struct RetrySurface<'a> {
pub modules: &'a BTreeSet<String>,
pub mode: SurfaceMatch,
pub block: &'a str,
}Expand description
The authoritative surface the retry loop gates and grounds against — the three facets of “the project’s real import surface”, grouped so the loop’s signature stays small.
Fields§
§modules: &'a BTreeSet<String>The module set the gate resolves imports against (R1’s known_modules()).
mode: SurfaceMatchStrictness of the project-surface match (Exact default; see SurfaceMatch).
block: &'a strR1’s rendered surface block (FfiManifest::render_block), injected into the
corrective prompt to ground the re-attempt.
Auto Trait Implementations§
impl<'a> Freeze for RetrySurface<'a>
impl<'a> RefUnwindSafe for RetrySurface<'a>
impl<'a> Send for RetrySurface<'a>
impl<'a> Sync for RetrySurface<'a>
impl<'a> Unpin for RetrySurface<'a>
impl<'a> UnsafeUnpin for RetrySurface<'a>
impl<'a> UnwindSafe for RetrySurface<'a>
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
impl<T> ErasedDestructor for Twhere
T: 'static,
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