pub struct ContentReasoningText {
pub text: String,
pub type_: String,
}Expand description
Reasoning text from the model.
Fields§
§text: StringThe reasoning text from the model.
type_: StringThe type of the reasoning text. Always reasoning_text.
Trait Implementations§
Source§impl Clone for ContentReasoningText
impl Clone for ContentReasoningText
Source§fn clone(&self) -> ContentReasoningText
fn clone(&self) -> ContentReasoningText
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 ContentReasoningText
impl Debug for ContentReasoningText
Source§impl<'de> Deserialize<'de> for ContentReasoningText
impl<'de> Deserialize<'de> for ContentReasoningText
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
Auto Trait Implementations§
impl Freeze for ContentReasoningText
impl RefUnwindSafe for ContentReasoningText
impl Send for ContentReasoningText
impl Sync for ContentReasoningText
impl Unpin for ContentReasoningText
impl UnsafeUnpin for ContentReasoningText
impl UnwindSafe for ContentReasoningText
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