pub struct ScoringFactors {
pub vector: f32,
pub warmth: f32,
pub recency: f32,
pub abstraction: f32,
pub graph: f32,
pub keyword: f32,
pub causal: f32,
}Expand description
Raw per-factor scores, each in [0, 1].
Fields§
§vector: f32§warmth: f32§recency: f32§abstraction: f32§graph: f32§keyword: f32§causal: f32Trait Implementations§
Source§impl Clone for ScoringFactors
impl Clone for ScoringFactors
Source§fn clone(&self) -> ScoringFactors
fn clone(&self) -> ScoringFactors
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 ScoringFactors
impl Debug for ScoringFactors
Source§impl Default for ScoringFactors
impl Default for ScoringFactors
Source§fn default() -> ScoringFactors
fn default() -> ScoringFactors
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ScoringFactors
impl RefUnwindSafe for ScoringFactors
impl Send for ScoringFactors
impl Sync for ScoringFactors
impl Unpin for ScoringFactors
impl UnwindSafe for ScoringFactors
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