pub struct ModeMeasurement {
pub mode: String,
pub tokens: usize,
pub savings_pct: f64,
pub latency_us: u64,
pub preservation_score: f64,
}Fields§
§mode: String§tokens: usize§savings_pct: f64§latency_us: u64§preservation_score: f64Trait Implementations§
Source§impl Clone for ModeMeasurement
impl Clone for ModeMeasurement
Source§fn clone(&self) -> ModeMeasurement
fn clone(&self) -> ModeMeasurement
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 ModeMeasurement
impl RefUnwindSafe for ModeMeasurement
impl Send for ModeMeasurement
impl Sync for ModeMeasurement
impl Unpin for ModeMeasurement
impl UnsafeUnpin for ModeMeasurement
impl UnwindSafe for ModeMeasurement
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