pub struct ForgetSummary {
pub candidates: Vec<ForgetCandidate>,
pub archived: u32,
pub failed: u32,
pub dry_run: bool,
}Expand description
Result of a forget_brain call.
Fields§
§candidates: Vec<ForgetCandidate>Memories identified as candidates.
archived: u32Memories that were actually archived (0 on dry_run).
failed: u32Memories that could not be archived due to errors.
dry_run: boolTrue when this was a dry-run (nothing written).
Trait Implementations§
Source§impl Clone for ForgetSummary
impl Clone for ForgetSummary
Source§fn clone(&self) -> ForgetSummary
fn clone(&self) -> ForgetSummary
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 ForgetSummary
impl Debug for ForgetSummary
Source§impl Default for ForgetSummary
impl Default for ForgetSummary
Source§fn default() -> ForgetSummary
fn default() -> ForgetSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ForgetSummary
impl RefUnwindSafe for ForgetSummary
impl Send for ForgetSummary
impl Sync for ForgetSummary
impl Unpin for ForgetSummary
impl UnsafeUnpin for ForgetSummary
impl UnwindSafe for ForgetSummary
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