pub enum ReasoningEffort {
Minimal,
Low,
Medium,
High,
Max,
Unknown,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ReasoningEffort
impl Clone for ReasoningEffort
Source§fn clone(&self) -> ReasoningEffort
fn clone(&self) -> ReasoningEffort
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 ReasoningEffort
impl Debug for ReasoningEffort
Source§impl Display for ReasoningEffort
impl Display for ReasoningEffort
Source§impl FromStr for ReasoningEffort
impl FromStr for ReasoningEffort
Source§type Err = ReasoningError
type Err = ReasoningError
The associated error which can be returned from parsing.
Source§fn from_str(
value: &str,
) -> Result<ReasoningEffort, <ReasoningEffort as FromStr>::Err>
fn from_str( value: &str, ) -> Result<ReasoningEffort, <ReasoningEffort as FromStr>::Err>
Parses a string
s to return a value of this type. Read moreSource§impl Hash for ReasoningEffort
impl Hash for ReasoningEffort
Source§impl Ord for ReasoningEffort
impl Ord for ReasoningEffort
Source§fn cmp(&self, other: &ReasoningEffort) -> Ordering
fn cmp(&self, other: &ReasoningEffort) -> 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 ReasoningEffort
impl PartialEq for ReasoningEffort
Source§fn eq(&self, other: &ReasoningEffort) -> bool
fn eq(&self, other: &ReasoningEffort) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for ReasoningEffort
impl PartialOrd for ReasoningEffort
impl Copy for ReasoningEffort
impl Eq for ReasoningEffort
impl StructuralPartialEq for ReasoningEffort
Auto Trait Implementations§
impl Freeze for ReasoningEffort
impl RefUnwindSafe for ReasoningEffort
impl Send for ReasoningEffort
impl Sync for ReasoningEffort
impl Unpin for ReasoningEffort
impl UnsafeUnpin for ReasoningEffort
impl UnwindSafe for ReasoningEffort
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