pub struct SeedFeatureReport {
pub feature_name: String,
pub found_in_ranking: bool,
pub rank: Option<usize>,
pub candidate_score: Option<f64>,
pub in_top_4: bool,
pub in_top_8: bool,
pub in_top_16: bool,
pub top_4_note: String,
pub top_8_note: String,
pub top_16_note: String,
}Fields§
§feature_name: String§found_in_ranking: bool§rank: Option<usize>§candidate_score: Option<f64>§in_top_4: bool§in_top_8: bool§in_top_16: bool§top_4_note: String§top_8_note: String§top_16_note: StringTrait Implementations§
Source§impl Clone for SeedFeatureReport
impl Clone for SeedFeatureReport
Source§fn clone(&self) -> SeedFeatureReport
fn clone(&self) -> SeedFeatureReport
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 SeedFeatureReport
impl Debug for SeedFeatureReport
Auto Trait Implementations§
impl Freeze for SeedFeatureReport
impl RefUnwindSafe for SeedFeatureReport
impl Send for SeedFeatureReport
impl Sync for SeedFeatureReport
impl Unpin for SeedFeatureReport
impl UnsafeUnpin for SeedFeatureReport
impl UnwindSafe for SeedFeatureReport
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