pub enum ReasoningTier {
Off,
Low,
Medium,
High,
Max,
}Expand description
A concrete reasoning tier. Unlike RequestedReasoning this has no auto
— it is what a request actually runs at.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ReasoningTier
impl Clone for ReasoningTier
Source§fn clone(&self) -> ReasoningTier
fn clone(&self) -> ReasoningTier
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 moreimpl Copy for ReasoningTier
Source§impl Debug for ReasoningTier
impl Debug for ReasoningTier
Source§impl<'de> Deserialize<'de> for ReasoningTier
impl<'de> Deserialize<'de> for ReasoningTier
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 ReasoningTier
Source§impl Ord for ReasoningTier
impl Ord for ReasoningTier
Source§fn cmp(&self, other: &ReasoningTier) -> Ordering
fn cmp(&self, other: &ReasoningTier) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ReasoningTier
impl PartialEq for ReasoningTier
Source§impl PartialOrd for ReasoningTier
impl PartialOrd for ReasoningTier
Source§impl Serialize for ReasoningTier
impl Serialize for ReasoningTier
impl StructuralPartialEq for ReasoningTier
Auto Trait Implementations§
impl Freeze for ReasoningTier
impl RefUnwindSafe for ReasoningTier
impl Send for ReasoningTier
impl Sync for ReasoningTier
impl Unpin for ReasoningTier
impl UnsafeUnpin for ReasoningTier
impl UnwindSafe for ReasoningTier
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