pub enum FleetLoadout {
Inherit,
Fast,
Custom(String),
}Expand description
Model class or route-role hint for a profile.
Variants§
Inherit
Reuse the active session route (the operator’s model). Default.
Fast
Route to the provider’s faster/cheaper model class for wide fan-out.
Custom(String)
Unrecognized loadout names parse here (including the retired strong/balanced/deep-reasoning/code/review/tool-heavy tiers, which never routed differently). Treated as auto routing.
Implementations§
Trait Implementations§
Source§impl Clone for FleetLoadout
impl Clone for FleetLoadout
Source§fn clone(&self) -> FleetLoadout
fn clone(&self) -> FleetLoadout
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 FleetLoadout
impl Debug for FleetLoadout
Source§impl Default for FleetLoadout
impl Default for FleetLoadout
Source§fn default() -> FleetLoadout
fn default() -> FleetLoadout
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FleetLoadout
impl<'de> Deserialize<'de> for FleetLoadout
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
impl Eq for FleetLoadout
Source§impl PartialEq for FleetLoadout
impl PartialEq for FleetLoadout
Source§impl Serialize for FleetLoadout
impl Serialize for FleetLoadout
impl StructuralPartialEq for FleetLoadout
Auto Trait Implementations§
impl Freeze for FleetLoadout
impl RefUnwindSafe for FleetLoadout
impl Send for FleetLoadout
impl Sync for FleetLoadout
impl Unpin for FleetLoadout
impl UnsafeUnpin for FleetLoadout
impl UnwindSafe for FleetLoadout
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.