pub struct RoutingScenarioHealth {Show 13 fields
pub name: String,
pub workload: RoutingWorkload,
pub task_family: String,
pub has_tools: bool,
pub has_vision: bool,
pub prefer_local: bool,
pub quality_first_cold_start: bool,
pub bootstrap_min_task_observations: u64,
pub bootstrap_quality_floor: f64,
pub model_id: String,
pub model_name: String,
pub reason: String,
pub strategy: RoutingStrategy,
}Fields§
§name: String§workload: RoutingWorkload§task_family: String§has_tools: bool§has_vision: bool§prefer_local: bool§quality_first_cold_start: bool§bootstrap_min_task_observations: u64§bootstrap_quality_floor: f64§model_id: String§model_name: String§reason: String§strategy: RoutingStrategyTrait Implementations§
Source§impl Clone for RoutingScenarioHealth
impl Clone for RoutingScenarioHealth
Source§fn clone(&self) -> RoutingScenarioHealth
fn clone(&self) -> RoutingScenarioHealth
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 RoutingScenarioHealth
impl Debug for RoutingScenarioHealth
Auto Trait Implementations§
impl Freeze for RoutingScenarioHealth
impl RefUnwindSafe for RoutingScenarioHealth
impl Send for RoutingScenarioHealth
impl Sync for RoutingScenarioHealth
impl Unpin for RoutingScenarioHealth
impl UnsafeUnpin for RoutingScenarioHealth
impl UnwindSafe for RoutingScenarioHealth
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
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 more