pub enum ModelPickerPriceCategory {
Low,
Medium,
High,
VeryHigh,
Unknown,
}Expand description
Relative cost tier for token-based billing users
Variants§
Low
Lowest relative token cost tier.
Medium
Medium relative token cost tier.
High
High relative token cost tier.
VeryHigh
Highest relative token cost tier.
Unknown
Unknown variant for forward compatibility.
Trait Implementations§
Source§impl Clone for ModelPickerPriceCategory
impl Clone for ModelPickerPriceCategory
Source§fn clone(&self) -> ModelPickerPriceCategory
fn clone(&self) -> ModelPickerPriceCategory
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 ModelPickerPriceCategory
impl Debug for ModelPickerPriceCategory
Source§impl Default for ModelPickerPriceCategory
impl Default for ModelPickerPriceCategory
Source§fn default() -> ModelPickerPriceCategory
fn default() -> ModelPickerPriceCategory
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModelPickerPriceCategory
impl<'de> Deserialize<'de> for ModelPickerPriceCategory
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 ModelPickerPriceCategory
Source§impl PartialEq for ModelPickerPriceCategory
impl PartialEq for ModelPickerPriceCategory
Source§fn eq(&self, other: &ModelPickerPriceCategory) -> bool
fn eq(&self, other: &ModelPickerPriceCategory) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ModelPickerPriceCategory
impl Serialize for ModelPickerPriceCategory
impl StructuralPartialEq for ModelPickerPriceCategory
Auto Trait Implementations§
impl Freeze for ModelPickerPriceCategory
impl RefUnwindSafe for ModelPickerPriceCategory
impl Send for ModelPickerPriceCategory
impl Sync for ModelPickerPriceCategory
impl Unpin for ModelPickerPriceCategory
impl UnsafeUnpin for ModelPickerPriceCategory
impl UnwindSafe for ModelPickerPriceCategory
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