Skip to main content

ProviderRuntimeProfile

Struct ProviderRuntimeProfile 

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

Provider-recommended defaults for one fully composed model runtime.

The profile contains execution policy rather than transport credentials or model identity. Concrete providers may override Default when their wire protocol requires a different delivery mode, capability policy, retry authority, circuit policy, or namespaced request option.

Implementations§

Source§

impl ProviderRuntimeProfile

Source

pub fn conservative() -> Self

Creates the provider-neutral fail-closed baseline.

Source

pub const fn response_mode(self, response_mode: ResponseMode) -> Self

Replaces response delivery behavior.

Source

pub const fn feature_policy(self, feature_policy: FeaturePolicy) -> Self

Replaces handling for unknown or emulated model capabilities.

Source

pub fn retry_policy(self, retry_policy: ModelRetryPolicy) -> Self

Replaces bounded same-route retry policy.

Source

pub fn circuit_breaker(self, circuit_breaker: CircuitBreakerConfig) -> Self

Replaces circuit-breaker policy.

Source

pub fn provider_option( self, provider: impl Into<String>, options: Value, ) -> Self

Adds or replaces one adapter-owned namespaced request option.

Source

pub const fn selected_response_mode(&self) -> ResponseMode

Returns response delivery behavior.

Source

pub const fn selected_feature_policy(&self) -> FeaturePolicy

Returns handling for unknown or emulated model capabilities.

Source

pub const fn selected_retry_policy(&self) -> &ModelRetryPolicy

Returns bounded same-route retry policy.

Source

pub const fn selected_circuit_breaker(&self) -> &CircuitBreakerConfig

Returns circuit-breaker policy.

Source

pub const fn provider_options(&self) -> &BTreeMap<String, Value>

Returns adapter-owned namespaced request options.

Source

pub fn into_parts( self, ) -> (ResponseMode, FeaturePolicy, ModelRetryPolicy, CircuitBreakerConfig, BTreeMap<String, Value>)

Splits the profile into owned runtime components.

Trait Implementations§

Source§

impl Clone for ProviderRuntimeProfile

Source§

fn clone(&self) -> ProviderRuntimeProfile

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 ProviderRuntimeProfile

Source§

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

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

impl Default for ProviderRuntimeProfile

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Eq for ProviderRuntimeProfile

Source§

impl PartialEq for ProviderRuntimeProfile

Source§

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

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

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

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for ProviderRuntimeProfile

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> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

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.