pub struct ResolveCliModelResult {
pub model: Option<Model>,
pub thinking_level: Option<ModelThinkingLevel>,
pub warning: Option<String>,
pub error: Option<String>,
}Expand description
Result of resolve_cli_model.
Fields§
§model: Option<Model>Resolved model, when successful.
thinking_level: Option<ModelThinkingLevel>Thinking level parsed from <pattern>:<level> when present.
warning: Option<String>Non-fatal warning (e.g. custom-model fallback notice).
error: Option<String>Hard failure message; when set, model is None.
Trait Implementations§
Source§impl Clone for ResolveCliModelResult
impl Clone for ResolveCliModelResult
Source§fn clone(&self) -> ResolveCliModelResult
fn clone(&self) -> ResolveCliModelResult
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 moreSource§impl Debug for ResolveCliModelResult
impl Debug for ResolveCliModelResult
Source§impl PartialEq for ResolveCliModelResult
impl PartialEq for ResolveCliModelResult
impl StructuralPartialEq for ResolveCliModelResult
Auto Trait Implementations§
impl Freeze for ResolveCliModelResult
impl RefUnwindSafe for ResolveCliModelResult
impl Send for ResolveCliModelResult
impl Sync for ResolveCliModelResult
impl Unpin for ResolveCliModelResult
impl UnsafeUnpin for ResolveCliModelResult
impl UnwindSafe for ResolveCliModelResult
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,
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.