pub struct DreamResult {
pub sessions_processed: usize,
pub insights_extracted: usize,
pub entries_added: usize,
pub entries_removed: usize,
}Expand description
Summary of one dreaming cycle returned to the caller.
Fields§
§sessions_processed: usize§insights_extracted: usize§entries_added: usize§entries_removed: usizeTrait Implementations§
Source§impl Clone for DreamResult
impl Clone for DreamResult
Source§fn clone(&self) -> DreamResult
fn clone(&self) -> DreamResult
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 DreamResult
impl Debug for DreamResult
Source§impl Default for DreamResult
impl Default for DreamResult
Source§fn default() -> DreamResult
fn default() -> DreamResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DreamResult
impl RefUnwindSafe for DreamResult
impl Send for DreamResult
impl Sync for DreamResult
impl Unpin for DreamResult
impl UnsafeUnpin for DreamResult
impl UnwindSafe for DreamResult
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