pub struct GraphAnalysisResponse {
pub reasoning: String,
pub operations: Vec<GraphOperationResponse>,
}Expand description
AI response for v2 graph-based analysis.
Fields§
§reasoning: String§operations: Vec<GraphOperationResponse>Trait Implementations§
Source§impl Clone for GraphAnalysisResponse
impl Clone for GraphAnalysisResponse
Source§fn clone(&self) -> GraphAnalysisResponse
fn clone(&self) -> GraphAnalysisResponse
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 GraphAnalysisResponse
impl Debug for GraphAnalysisResponse
Source§impl<'de> Deserialize<'de> for GraphAnalysisResponse
impl<'de> Deserialize<'de> for GraphAnalysisResponse
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 GraphAnalysisResponse
impl RefUnwindSafe for GraphAnalysisResponse
impl Send for GraphAnalysisResponse
impl Sync for GraphAnalysisResponse
impl Unpin for GraphAnalysisResponse
impl UnsafeUnpin for GraphAnalysisResponse
impl UnwindSafe for GraphAnalysisResponse
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