pub struct IntentRouteInputsV1 {
pub query_md5: String,
pub query_redacted: String,
pub role: String,
pub profile: String,
pub task_type: TaskType,
pub confidence: f64,
pub dimension: IntentDimension,
pub budgets: BudgetSnapshot,
pub pressure: PressureSummaryV1,
pub policy_md5: String,
}Fields§
§query_md5: String§query_redacted: String§role: String§profile: String§task_type: TaskType§confidence: f64§dimension: IntentDimension§budgets: BudgetSnapshot§pressure: PressureSummaryV1§policy_md5: StringTrait Implementations§
Source§impl Clone for IntentRouteInputsV1
impl Clone for IntentRouteInputsV1
Source§fn clone(&self) -> IntentRouteInputsV1
fn clone(&self) -> IntentRouteInputsV1
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 IntentRouteInputsV1
impl Debug for IntentRouteInputsV1
Auto Trait Implementations§
impl Freeze for IntentRouteInputsV1
impl RefUnwindSafe for IntentRouteInputsV1
impl Send for IntentRouteInputsV1
impl Sync for IntentRouteInputsV1
impl Unpin for IntentRouteInputsV1
impl UnsafeUnpin for IntentRouteInputsV1
impl UnwindSafe for IntentRouteInputsV1
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