pub struct MemoryQueryExecution {
pub answer: SymbolicAnswer,
pub changed: bool,
}Expand description
Result of executing a natural-language memory query against a mutable store.
Fields§
§answer: SymbolicAnswer§changed: boolTrait Implementations§
Source§impl Clone for MemoryQueryExecution
impl Clone for MemoryQueryExecution
Source§fn clone(&self) -> MemoryQueryExecution
fn clone(&self) -> MemoryQueryExecution
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 MemoryQueryExecution
impl RefUnwindSafe for MemoryQueryExecution
impl Send for MemoryQueryExecution
impl Sync for MemoryQueryExecution
impl Unpin for MemoryQueryExecution
impl UnsafeUnpin for MemoryQueryExecution
impl UnwindSafe for MemoryQueryExecution
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