pub struct Dump {
pub name: &'static str,
pub rows: Rows,
pub width: usize,
pub data: Vec<f32>,
}Expand description
What one step wrote in one run, from CpuPlan::dumps.
Fields§
§name: &'static strThe kind of step.
rows: RowsWhether the rows are tokens, sequences or markers.
width: usizeValues per row.
data: Vec<f32>The live rows, row major.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Dump
impl RefUnwindSafe for Dump
impl Send for Dump
impl Sync for Dump
impl Unpin for Dump
impl UnsafeUnpin for Dump
impl UnwindSafe for Dump
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