pub struct ReflectionResult {
pub category: String,
pub content: String,
pub confidence: f64,
pub reasoning: String,
}Expand description
Result of reflecting on a tool execution sequence.
Fields§
§category: String§content: String§confidence: f64§reasoning: StringTrait Implementations§
Source§impl Clone for ReflectionResult
impl Clone for ReflectionResult
Source§fn clone(&self) -> ReflectionResult
fn clone(&self) -> ReflectionResult
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 moreAuto Trait Implementations§
impl Freeze for ReflectionResult
impl RefUnwindSafe for ReflectionResult
impl Send for ReflectionResult
impl Sync for ReflectionResult
impl Unpin for ReflectionResult
impl UnsafeUnpin for ReflectionResult
impl UnwindSafe for ReflectionResult
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