pub enum DecisionDomain {
DiffStrategy,
ResizeCoalescing,
FrameBudget,
Degradation,
VoiSampling,
HintRanking,
PaletteScoring,
}Expand description
Domain of a Bayesian decision point.
Covers all 7 adaptive controllers in FrankenTUI.
Variants§
DiffStrategy
Diff strategy selection (full vs dirty-rows vs full-redraw).
ResizeCoalescing
Resize event coalescing (apply vs coalesce vs placeholder).
FrameBudget
Frame budget allocation and PID-based timing.
Degradation
Graceful degradation level selection.
VoiSampling
Value-of-information adaptive sampling.
HintRanking
Hint ranking for type-ahead suggestions.
PaletteScoring
Command palette relevance scoring.
Implementations§
Trait Implementations§
Source§impl Clone for DecisionDomain
impl Clone for DecisionDomain
Source§fn clone(&self) -> DecisionDomain
fn clone(&self) -> DecisionDomain
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 DecisionDomain
impl Debug for DecisionDomain
Source§impl Hash for DecisionDomain
impl Hash for DecisionDomain
Source§impl PartialEq for DecisionDomain
impl PartialEq for DecisionDomain
impl Copy for DecisionDomain
impl Eq for DecisionDomain
impl StructuralPartialEq for DecisionDomain
Auto Trait Implementations§
impl Freeze for DecisionDomain
impl RefUnwindSafe for DecisionDomain
impl Send for DecisionDomain
impl Sync for DecisionDomain
impl Unpin for DecisionDomain
impl UnsafeUnpin for DecisionDomain
impl UnwindSafe for DecisionDomain
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.