pub struct DeliberatedFormation {
pub candidate_names: Vec<String>,
pub huddle_max_cycles: u32,
pub scoring_weights: ScoringWeights,
pub min_confidence_threshold: f32,
}Fields§
§candidate_names: Vec<String>§huddle_max_cycles: u32§scoring_weights: ScoringWeights§min_confidence_threshold: f32Implementations§
Trait Implementations§
Source§impl Clone for DeliberatedFormation
impl Clone for DeliberatedFormation
Source§fn clone(&self) -> DeliberatedFormation
fn clone(&self) -> DeliberatedFormation
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 DeliberatedFormation
impl Debug for DeliberatedFormation
Source§impl<'de> Deserialize<'de> for DeliberatedFormation
impl<'de> Deserialize<'de> for DeliberatedFormation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DeliberatedFormation
impl RefUnwindSafe for DeliberatedFormation
impl Send for DeliberatedFormation
impl Sync for DeliberatedFormation
impl Unpin for DeliberatedFormation
impl UnsafeUnpin for DeliberatedFormation
impl UnwindSafe for DeliberatedFormation
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