pub struct RenderTraceFrame<'a> {Show 14 fields
pub cols: u16,
pub rows: u16,
pub mode: &'a str,
pub ui_height: u16,
pub ui_anchor: &'a str,
pub diff_strategy: &'a str,
pub diff_cells: usize,
pub diff_runs: usize,
pub present_bytes: u64,
pub render_us: Option<u64>,
pub present_us: Option<u64>,
pub payload_kind: &'a str,
pub payload_path: Option<&'a str>,
pub trace_us: Option<u64>,
}Expand description
Render-trace frame record.
Fields§
§cols: u16§rows: u16§mode: &'a str§ui_height: u16§ui_anchor: &'a str§diff_strategy: &'a str§diff_cells: usize§diff_runs: usize§present_bytes: u64§render_us: Option<u64>§present_us: Option<u64>§payload_kind: &'a str§payload_path: Option<&'a str>§trace_us: Option<u64>Trait Implementations§
Source§impl<'a> Clone for RenderTraceFrame<'a>
impl<'a> Clone for RenderTraceFrame<'a>
Source§fn clone(&self) -> RenderTraceFrame<'a>
fn clone(&self) -> RenderTraceFrame<'a>
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<'a> Freeze for RenderTraceFrame<'a>
impl<'a> RefUnwindSafe for RenderTraceFrame<'a>
impl<'a> Send for RenderTraceFrame<'a>
impl<'a> Sync for RenderTraceFrame<'a>
impl<'a> Unpin for RenderTraceFrame<'a>
impl<'a> UnwindSafe for RenderTraceFrame<'a>
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