Skip to main content

ResolvedReasoning

Struct ResolvedReasoning 

Source
pub struct ResolvedReasoning { /* private fields */ }
Expand description

A resolved reasoning decision that keeps every side of the story: what the member asked for, which tier the selector landed on, what the provider is actually able to be told, and where the decision came from.

Implementations§

Source§

impl ResolvedReasoning

Source

pub fn router(&self) -> Option<&RouterIdentity>

The Router that chose this tier, if the decision came from one.

Source

pub const fn requested(&self) -> RequestedReasoning

Source

pub const fn effective(&self) -> EffectiveReasoning

The tier the selector landed on. This is a CodeWhale-side selector value; it is not automatically what the provider is told.

Source

pub const fn provider_control(&self) -> ProviderReasoningControl

How much reasoning control the route actually expresses.

Source

pub const fn provider_effective(&self) -> ProviderEffectiveReasoning

What the provider is actually asked for. On an enabled/disabled route (Z.AI GLM) both high and max land here as enabled — a receipt must report this, not the selector tier, as the provider-effective control.

Source

pub const fn source(&self) -> EffectiveReasoningSource

Source

pub const fn capability_normalized(&self) -> bool

Whether the route’s real capability changed the requested tier.

Source

pub fn receipt(&self) -> String

A truthful one-line receipt: requested → selected → what the provider can actually be told, plus the Router that decided it when one did.

Trait Implementations§

Source§

impl Clone for ResolvedReasoning

Source§

fn clone(&self) -> ResolvedReasoning

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ResolvedReasoning

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for ResolvedReasoning

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for ResolvedReasoning

Source§

impl PartialEq for ResolvedReasoning

Source§

fn eq(&self, other: &ResolvedReasoning) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for ResolvedReasoning

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for ResolvedReasoning

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.