pub enum SalienceBias {
Lower,
Auto,
Higher,
}Expand description
Salience-threshold bias.
Composes with Verbosity; the documented composition order is
SalienceBias runs first (changing tier classification), then
Verbosity runs (preferring within-tier or cross-tier per its
setting). Lower shifts the engine’s salience thresholds down so
the same numeric inputs land in higher tiers; Higher shifts them
up so inputs land in lower tiers. Both produce qualitatively
different prose without touching the underlying classification logic.
Variants§
Lower
Lower thresholds → contexts land in higher tiers more often.
Auto
Higher
Higher thresholds → contexts land in lower tiers more often.
Trait Implementations§
Source§impl Clone for SalienceBias
impl Clone for SalienceBias
Source§fn clone(&self) -> SalienceBias
fn clone(&self) -> SalienceBias
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 SalienceBias
impl Debug for SalienceBias
Source§impl Default for SalienceBias
impl Default for SalienceBias
Source§fn default() -> SalienceBias
fn default() -> SalienceBias
Returns the “default value” for a type. Read more
Source§impl PartialEq for SalienceBias
impl PartialEq for SalienceBias
Source§fn eq(&self, other: &SalienceBias) -> bool
fn eq(&self, other: &SalienceBias) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SalienceBias
impl Eq for SalienceBias
impl StructuralPartialEq for SalienceBias
Auto Trait Implementations§
impl Freeze for SalienceBias
impl RefUnwindSafe for SalienceBias
impl Send for SalienceBias
impl Sync for SalienceBias
impl Unpin for SalienceBias
impl UnsafeUnpin for SalienceBias
impl UnwindSafe for SalienceBias
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