pub struct FeedbackStats {
pub total_feedback: usize,
pub confirmed: usize,
pub rejected: usize,
pub ignored: usize,
pub accuracy_rate: f64,
pub avg_confirm_conf: f64,
pub avg_reject_conf: f64,
}Fields§
§total_feedback: usize§confirmed: usize§rejected: usize§ignored: usize§accuracy_rate: f64§avg_confirm_conf: f64§avg_reject_conf: f64Trait 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