pub struct FeedbackStats {
pub total_accepted: usize,
pub total_ignored: usize,
pub avg_accept_score: f64,
pub avg_ignore_score: f64,
pub adjustments: Vec<WeightAdjustment>,
}Fields§
§total_accepted: usize§total_ignored: usize§avg_accept_score: f64§avg_ignore_score: f64§adjustments: Vec<WeightAdjustment>Trait Implementations§
Source§impl Clone for FeedbackStats
impl Clone for FeedbackStats
Source§fn clone(&self) -> FeedbackStats
fn clone(&self) -> FeedbackStats
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 FeedbackStats
impl Debug for FeedbackStats
Auto Trait Implementations§
impl Freeze for FeedbackStats
impl RefUnwindSafe for FeedbackStats
impl Send for FeedbackStats
impl Sync for FeedbackStats
impl Unpin for FeedbackStats
impl UnsafeUnpin for FeedbackStats
impl UnwindSafe for FeedbackStats
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