pub enum ModelPickerCategory {
Lightweight,
Versatile,
Powerful,
Unknown,
}Expand description
Model capability category for grouping in the model picker
Variants§
Lightweight
Lightweight model category optimized for faster, lower-cost interactions.
Versatile
Versatile model category suitable for a broad range of tasks.
Powerful
Powerful model category optimized for complex tasks.
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for ModelPickerCategory
impl Clone for ModelPickerCategory
Source§fn clone(&self) -> ModelPickerCategory
fn clone(&self) -> ModelPickerCategory
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 ModelPickerCategory
impl Debug for ModelPickerCategory
Source§impl Default for ModelPickerCategory
impl Default for ModelPickerCategory
Source§fn default() -> ModelPickerCategory
fn default() -> ModelPickerCategory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModelPickerCategory
impl<'de> Deserialize<'de> for ModelPickerCategory
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 ModelPickerCategory
Source§impl PartialEq for ModelPickerCategory
impl PartialEq for ModelPickerCategory
Source§fn eq(&self, other: &ModelPickerCategory) -> bool
fn eq(&self, other: &ModelPickerCategory) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ModelPickerCategory
impl Serialize for ModelPickerCategory
impl StructuralPartialEq for ModelPickerCategory
Auto Trait Implementations§
impl Freeze for ModelPickerCategory
impl RefUnwindSafe for ModelPickerCategory
impl Send for ModelPickerCategory
impl Sync for ModelPickerCategory
impl Unpin for ModelPickerCategory
impl UnsafeUnpin for ModelPickerCategory
impl UnwindSafe for ModelPickerCategory
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