pub struct ResearchReport {
pub markdown: String,
pub citations: Vec<Citation>,
pub subtopics: Vec<String>,
pub rounds_completed: usize,
}Expand description
The final output of a deep research run.
Fields§
§markdown: StringThe full report in markdown format with inline citation markers.
citations: Vec<Citation>Ordered list of citations referenced in the report.
subtopics: Vec<String>Sub-topics that were investigated.
rounds_completed: usizeNumber of research rounds completed.
Trait Implementations§
Source§impl Clone for ResearchReport
impl Clone for ResearchReport
Source§fn clone(&self) -> ResearchReport
fn clone(&self) -> ResearchReport
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 ResearchReport
impl Debug for ResearchReport
Source§impl<'de> Deserialize<'de> for ResearchReport
impl<'de> Deserialize<'de> for ResearchReport
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 ResearchReport
impl RefUnwindSafe for ResearchReport
impl Send for ResearchReport
impl Sync for ResearchReport
impl Unpin for ResearchReport
impl UnsafeUnpin for ResearchReport
impl UnwindSafe for ResearchReport
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