pub struct ZoneThresholds {
pub critical_score: f32,
pub critical_salience: f32,
pub primary_score: f32,
pub supporting_score: f32,
}Expand description
Thresholds for classifying memories into attention zones.
Fields§
§critical_score: f32Minimum score to place a memory in the Critical zone (default: 0.8).
critical_salience: f32Minimum salience to place a memory in the Critical zone (default: 0.7).
primary_score: f32Minimum score to place a memory in the Primary zone (default: 0.5).
supporting_score: f32Minimum score to place a memory in the Supporting zone (default: 0.2).
Trait Implementations§
Source§impl Clone for ZoneThresholds
impl Clone for ZoneThresholds
Source§fn clone(&self) -> ZoneThresholds
fn clone(&self) -> ZoneThresholds
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 moreSource§impl Debug for ZoneThresholds
impl Debug for ZoneThresholds
Auto Trait Implementations§
impl Freeze for ZoneThresholds
impl RefUnwindSafe for ZoneThresholds
impl Send for ZoneThresholds
impl Sync for ZoneThresholds
impl Unpin for ZoneThresholds
impl UnsafeUnpin for ZoneThresholds
impl UnwindSafe for ZoneThresholds
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