pub struct OutputReasoning {
pub output_type: String,
pub id: String,
pub status: OutputStatus,
pub summary: Vec<ReasoningSummaryTextContent>,
pub content: Vec<ReasoningContent>,
pub encrypted_content: Option<String>,
}Fields§
§output_type: String§id: String§status: OutputStatus§summary: Vec<ReasoningSummaryTextContent>§content: Vec<ReasoningContent>§encrypted_content: Option<String>Trait Implementations§
Source§impl Clone for OutputReasoning
impl Clone for OutputReasoning
Source§fn clone(&self) -> OutputReasoning
fn clone(&self) -> OutputReasoning
Returns a duplicate 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 OutputReasoning
impl Debug for OutputReasoning
Source§impl<'de> Deserialize<'de> for OutputReasoning
impl<'de> Deserialize<'de> for OutputReasoning
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 PartialEq for OutputReasoning
impl PartialEq for OutputReasoning
Source§impl Serialize for OutputReasoning
impl Serialize for OutputReasoning
impl StructuralPartialEq for OutputReasoning
Auto Trait Implementations§
impl Freeze for OutputReasoning
impl RefUnwindSafe for OutputReasoning
impl Send for OutputReasoning
impl Sync for OutputReasoning
impl Unpin for OutputReasoning
impl UnsafeUnpin for OutputReasoning
impl UnwindSafe for OutputReasoning
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