pub struct JudgmentGeneratorConfig {
pub judgments_per_engagement: (u32, u32),
pub consultation_probability: f64,
pub information_items_range: (u32, u32),
pub alternatives_range: (u32, u32),
}Expand description
Configuration for judgment generation.
Fields§
§judgments_per_engagement: (u32, u32)Number of judgments per engagement (min, max)
consultation_probability: f64Probability of requiring consultation
information_items_range: (u32, u32)Number of information items per judgment (min, max)
alternatives_range: (u32, u32)Number of alternatives evaluated (min, max)
Trait Implementations§
Source§impl Clone for JudgmentGeneratorConfig
impl Clone for JudgmentGeneratorConfig
Source§fn clone(&self) -> JudgmentGeneratorConfig
fn clone(&self) -> JudgmentGeneratorConfig
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 JudgmentGeneratorConfig
impl Debug for JudgmentGeneratorConfig
Auto Trait Implementations§
impl Freeze for JudgmentGeneratorConfig
impl RefUnwindSafe for JudgmentGeneratorConfig
impl Send for JudgmentGeneratorConfig
impl Sync for JudgmentGeneratorConfig
impl Unpin for JudgmentGeneratorConfig
impl UnwindSafe for JudgmentGeneratorConfig
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