pub struct FastPathTimingStudy {
pub measurement_kind: String,
pub actual_gpu_timing: bool,
pub lambda: f32,
pub k: f32,
pub entries: Vec<FastPathTimingEntry>,
pub notes: Vec<String>,
}Expand description
Full result from run_fast_path_timing_study.
Fields§
§measurement_kind: String§actual_gpu_timing: bool§lambda: f32§k: f32§entries: Vec<FastPathTimingEntry>§notes: Vec<String>Trait Implementations§
Source§impl Clone for FastPathTimingStudy
impl Clone for FastPathTimingStudy
Source§fn clone(&self) -> FastPathTimingStudy
fn clone(&self) -> FastPathTimingStudy
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 FastPathTimingStudy
impl Debug for FastPathTimingStudy
Auto Trait Implementations§
impl Freeze for FastPathTimingStudy
impl RefUnwindSafe for FastPathTimingStudy
impl Send for FastPathTimingStudy
impl Sync for FastPathTimingStudy
impl Unpin for FastPathTimingStudy
impl UnsafeUnpin for FastPathTimingStudy
impl UnwindSafe for FastPathTimingStudy
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