pub struct PromotionConfig {
pub min_sessions_per_arm: usize,
pub promote_threshold: f64,
pub mc_samples: u32,
}Expand description
Configuration for promotion_decision.
Fields§
§min_sessions_per_arm: usizeMinimum sessions required in each arm before any decision is made.
promote_threshold: f64Posterior threshold above which the challenger is promoted.
mc_samples: u32Monte Carlo sample count for posterior_probability.
Trait Implementations§
Source§impl Clone for PromotionConfig
impl Clone for PromotionConfig
Source§fn clone(&self) -> PromotionConfig
fn clone(&self) -> PromotionConfig
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 PromotionConfig
impl Debug for PromotionConfig
Source§impl Default for PromotionConfig
impl Default for PromotionConfig
Source§impl PartialEq for PromotionConfig
impl PartialEq for PromotionConfig
impl Copy for PromotionConfig
impl StructuralPartialEq for PromotionConfig
Auto Trait Implementations§
impl Freeze for PromotionConfig
impl RefUnwindSafe for PromotionConfig
impl Send for PromotionConfig
impl Sync for PromotionConfig
impl Unpin for PromotionConfig
impl UnsafeUnpin for PromotionConfig
impl UnwindSafe for PromotionConfig
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