pub struct DryRunBackendOutput {
pub action: &'static str,
pub backend: &'static str,
pub binary: String,
pub model: String,
pub flavour: &'static str,
pub chain: String,
pub strict_env_clear: bool,
}Expand description
Compact JSON envelope emitted by --dry-run-backend.
Field order matches the documented schema. chain reflects
--llm-fallback so operators can audit the fallback order without
spawning embedder::embed_with_fallback.
Fields§
§action: &'static str§backend: &'static str§binary: String§model: String§flavour: &'static str§chain: String§strict_env_clear: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for DryRunBackendOutput
impl RefUnwindSafe for DryRunBackendOutput
impl Send for DryRunBackendOutput
impl Sync for DryRunBackendOutput
impl Unpin for DryRunBackendOutput
impl UnsafeUnpin for DryRunBackendOutput
impl UnwindSafe for DryRunBackendOutput
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<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