pub struct ReflectionAttempt {
pub response: String,
pub evaluation: EvaluationResult,
pub feedback: Option<String>,
}Fields§
§response: String§evaluation: EvaluationResult§feedback: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ReflectionAttempt
impl Clone for ReflectionAttempt
Source§fn clone(&self) -> ReflectionAttempt
fn clone(&self) -> ReflectionAttempt
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 ReflectionAttempt
impl Debug for ReflectionAttempt
Source§impl<'de> Deserialize<'de> for ReflectionAttempt
impl<'de> Deserialize<'de> for ReflectionAttempt
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 ReflectionAttempt
impl RefUnwindSafe for ReflectionAttempt
impl Send for ReflectionAttempt
impl Sync for ReflectionAttempt
impl Unpin for ReflectionAttempt
impl UnsafeUnpin for ReflectionAttempt
impl UnwindSafe for ReflectionAttempt
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