pub enum ReasoningTextContentType {
ReasoningText,
}Expand description
The type of the reasoning text. Always reasoning_text.
JSON schema
{
"description": "The type of the reasoning text. Always `reasoning_text`.",
"type": "string",
"enum": [
"reasoning_text"
],
"x-stainless-const": true
}Variants§
ReasoningText
Trait Implementations§
Source§impl Clone for ReasoningTextContentType
impl Clone for ReasoningTextContentType
Source§fn clone(&self) -> ReasoningTextContentType
fn clone(&self) -> ReasoningTextContentType
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 ReasoningTextContentType
Source§impl Debug for ReasoningTextContentType
impl Debug for ReasoningTextContentType
Source§impl<'de> Deserialize<'de> for ReasoningTextContentType
impl<'de> Deserialize<'de> for ReasoningTextContentType
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
Source§impl Display for ReasoningTextContentType
impl Display for ReasoningTextContentType
impl Eq for ReasoningTextContentType
Source§impl FromStr for ReasoningTextContentType
impl FromStr for ReasoningTextContentType
Source§impl Hash for ReasoningTextContentType
impl Hash for ReasoningTextContentType
Source§impl Ord for ReasoningTextContentType
impl Ord for ReasoningTextContentType
Source§fn cmp(&self, other: &ReasoningTextContentType) -> Ordering
fn cmp(&self, other: &ReasoningTextContentType) -> 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 ReasoningTextContentType
impl PartialEq for ReasoningTextContentType
Source§impl PartialOrd for ReasoningTextContentType
impl PartialOrd for ReasoningTextContentType
Source§impl Serialize for ReasoningTextContentType
impl Serialize for ReasoningTextContentType
impl StructuralPartialEq for ReasoningTextContentType
Source§impl TryFrom<&String> for ReasoningTextContentType
impl TryFrom<&String> for ReasoningTextContentType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for ReasoningTextContentType
impl TryFrom<&str> for ReasoningTextContentType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for ReasoningTextContentType
impl TryFrom<String> for ReasoningTextContentType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for ReasoningTextContentType
impl RefUnwindSafe for ReasoningTextContentType
impl Send for ReasoningTextContentType
impl Sync for ReasoningTextContentType
impl Unpin for ReasoningTextContentType
impl UnsafeUnpin for ReasoningTextContentType
impl UnwindSafe for ReasoningTextContentType
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