pub struct InferenceRoutingStatusResult {
pub thread_id: ThreadId,
pub turn_id: Option<TurnId>,
pub active: bool,
pub decision_count: u64,
pub router_id: Option<String>,
pub latest_outcome: Option<InferenceRoutingOutcome>,
pub default_selection: Option<ModelSelection>,
pub selected_selection: Option<ModelSelection>,
pub latest_decision: Option<InferenceRoutingDecisionEvent>,
pub summary: RetrievalDebugSummary,
}Fields§
§thread_id: ThreadId§turn_id: Option<TurnId>§active: bool§decision_count: u64§router_id: Option<String>§latest_outcome: Option<InferenceRoutingOutcome>§default_selection: Option<ModelSelection>§selected_selection: Option<ModelSelection>§latest_decision: Option<InferenceRoutingDecisionEvent>§summary: RetrievalDebugSummaryTrait Implementations§
Source§impl Clone for InferenceRoutingStatusResult
impl Clone for InferenceRoutingStatusResult
Source§fn clone(&self) -> InferenceRoutingStatusResult
fn clone(&self) -> InferenceRoutingStatusResult
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 InferenceRoutingStatusResult
impl Debug for InferenceRoutingStatusResult
Source§impl<'de> Deserialize<'de> for InferenceRoutingStatusResult
impl<'de> Deserialize<'de> for InferenceRoutingStatusResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InferenceRoutingStatusResult
impl RefUnwindSafe for InferenceRoutingStatusResult
impl Send for InferenceRoutingStatusResult
impl Sync for InferenceRoutingStatusResult
impl Unpin for InferenceRoutingStatusResult
impl UnsafeUnpin for InferenceRoutingStatusResult
impl UnwindSafe for InferenceRoutingStatusResult
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