pub struct FeedbackResult {
pub action: FeedbackAction,
pub category: Option<MemoryCategory>,
pub new_content: Option<String>,
pub search_keywords: Vec<String>,
pub original_text: String,
}Expand description
Result of feedback detection.
Fields§
§action: FeedbackAction§category: Option<MemoryCategory>§new_content: Option<String>§search_keywords: Vec<String>§original_text: StringTrait Implementations§
Source§impl Clone for FeedbackResult
impl Clone for FeedbackResult
Source§fn clone(&self) -> FeedbackResult
fn clone(&self) -> FeedbackResult
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 FeedbackResult
impl RefUnwindSafe for FeedbackResult
impl Send for FeedbackResult
impl Sync for FeedbackResult
impl Unpin for FeedbackResult
impl UnsafeUnpin for FeedbackResult
impl UnwindSafe for FeedbackResult
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