pub struct ReasoningItem {
pub type: String,
pub id: String,
pub summary: Vec<ReasoningItem_Summary>,
pub status: Option<String>,
}
Expand description
A description of the chain of thought used by a reasoning model while generating a response.
Fields§
§type: String
The type of the object.
id: String
The unique identifier of the reasoning content.
summary: Vec<ReasoningItem_Summary>
Reasoning text contents.
status: Option<String>
The status of the item.
Trait Implementations§
Source§impl Clone for ReasoningItem
impl Clone for ReasoningItem
Source§fn clone(&self) -> ReasoningItem
fn clone(&self) -> ReasoningItem
Returns a copy of the value. Read more
1.0.0 · 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 ReasoningItem
impl Debug for ReasoningItem
Source§impl Default for ReasoningItem
impl Default for ReasoningItem
Source§fn default() -> ReasoningItem
fn default() -> ReasoningItem
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReasoningItem
impl RefUnwindSafe for ReasoningItem
impl Send for ReasoningItem
impl Sync for ReasoningItem
impl Unpin for ReasoningItem
impl UnwindSafe for ReasoningItem
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