pub struct CognitiveFinding {
pub finding_type: CognitiveFindingType,
pub description: String,
pub related_memory_id: Option<MemoryId>,
}Expand description
Findings from cognitive checks (contradiction detection).
Fields§
§finding_type: CognitiveFindingTypeWhat type of issue was found.
description: StringHuman-readable description of the finding.
ID of the existing memory involved, if any.
Trait Implementations§
Source§impl Clone for CognitiveFinding
impl Clone for CognitiveFinding
Source§fn clone(&self) -> CognitiveFinding
fn clone(&self) -> CognitiveFinding
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 moreAuto Trait Implementations§
impl Freeze for CognitiveFinding
impl RefUnwindSafe for CognitiveFinding
impl Send for CognitiveFinding
impl Sync for CognitiveFinding
impl Unpin for CognitiveFinding
impl UnsafeUnpin for CognitiveFinding
impl UnwindSafe for CognitiveFinding
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