pub struct DeepResearchResponse {
pub success: bool,
pub mode: String,
pub result: Option<String>,
pub task_id: Option<String>,
pub generated_at: Option<String>,
pub provider: Option<String>,
pub message: Option<String>,
}Fields§
§success: bool§mode: String§result: Option<String>§task_id: Option<String>§generated_at: Option<String>§provider: Option<String>§message: Option<String>Trait Implementations§
Source§impl Clone for DeepResearchResponse
impl Clone for DeepResearchResponse
Source§fn clone(&self) -> DeepResearchResponse
fn clone(&self) -> DeepResearchResponse
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 DeepResearchResponse
impl Debug for DeepResearchResponse
Source§impl<'de> Deserialize<'de> for DeepResearchResponse
impl<'de> Deserialize<'de> for DeepResearchResponse
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 DeepResearchResponse
impl RefUnwindSafe for DeepResearchResponse
impl Send for DeepResearchResponse
impl Sync for DeepResearchResponse
impl Unpin for DeepResearchResponse
impl UnwindSafe for DeepResearchResponse
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