pub struct InvalidRouteModeCombinationBody {
pub code: String,
pub route_mode: LlmRoute,
pub execution_preference: Option<String>,
pub hint: String,
}Expand description
Wire shape of the structured 400 body for
api_store.invalid_route_mode_combination.
Fields§
§code: String§route_mode: LlmRoute§execution_preference: Option<String>§hint: StringTrait Implementations§
Source§impl Clone for InvalidRouteModeCombinationBody
impl Clone for InvalidRouteModeCombinationBody
Source§fn clone(&self) -> InvalidRouteModeCombinationBody
fn clone(&self) -> InvalidRouteModeCombinationBody
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<'de> Deserialize<'de> for InvalidRouteModeCombinationBody
impl<'de> Deserialize<'de> for InvalidRouteModeCombinationBody
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
Source§impl From<InvalidRouteModeCombinationBody> for InvalidRouteModeCombinationError
impl From<InvalidRouteModeCombinationBody> for InvalidRouteModeCombinationError
Source§fn from(body: InvalidRouteModeCombinationBody) -> Self
fn from(body: InvalidRouteModeCombinationBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InvalidRouteModeCombinationBody
impl RefUnwindSafe for InvalidRouteModeCombinationBody
impl Send for InvalidRouteModeCombinationBody
impl Sync for InvalidRouteModeCombinationBody
impl Unpin for InvalidRouteModeCombinationBody
impl UnsafeUnpin for InvalidRouteModeCombinationBody
impl UnwindSafe for InvalidRouteModeCombinationBody
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