pub struct EvaluatorPerformance {
pub avg_time_per_sample_ms: f32,
pub memory_usage_mb: f32,
pub accuracy: f32,
}Expand description
Performance characteristics of evaluators
Fields§
§avg_time_per_sample_ms: f32Average evaluation time per sample (ms)
memory_usage_mb: f32Memory usage (MB)
accuracy: f32Accuracy of evaluation
Trait Implementations§
Source§impl Clone for EvaluatorPerformance
impl Clone for EvaluatorPerformance
Source§fn clone(&self) -> EvaluatorPerformance
fn clone(&self) -> EvaluatorPerformance
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 moreAuto Trait Implementations§
impl Freeze for EvaluatorPerformance
impl RefUnwindSafe for EvaluatorPerformance
impl Send for EvaluatorPerformance
impl Sync for EvaluatorPerformance
impl Unpin for EvaluatorPerformance
impl UnwindSafe for EvaluatorPerformance
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