pub struct ScoredFormation {
pub candidate_names: Vec<String>,
pub top_n: usize,
pub scoring_weights: ScoringWeights,
}Fields§
§candidate_names: Vec<String>§top_n: usize§scoring_weights: ScoringWeightsImplementations§
Trait Implementations§
Source§impl Clone for ScoredFormation
impl Clone for ScoredFormation
Source§fn clone(&self) -> ScoredFormation
fn clone(&self) -> ScoredFormation
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 ScoredFormation
impl Debug for ScoredFormation
Source§impl<'de> Deserialize<'de> for ScoredFormation
impl<'de> Deserialize<'de> for ScoredFormation
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 ScoredFormation
impl RefUnwindSafe for ScoredFormation
impl Send for ScoredFormation
impl Sync for ScoredFormation
impl Unpin for ScoredFormation
impl UnsafeUnpin for ScoredFormation
impl UnwindSafe for ScoredFormation
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