pub struct LuaExtPassTiming {
pub pass_name: String,
pub elapsed_us: u64,
pub items_processed: usize,
pub bytes_before: usize,
pub bytes_after: usize,
}Expand description
Pass-timing record for LuaExt profiler.
Fields§
§pass_name: String§elapsed_us: u64§items_processed: usize§bytes_before: usize§bytes_after: usizeImplementations§
Trait Implementations§
Source§impl Clone for LuaExtPassTiming
impl Clone for LuaExtPassTiming
Source§fn clone(&self) -> LuaExtPassTiming
fn clone(&self) -> LuaExtPassTiming
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 LuaExtPassTiming
impl RefUnwindSafe for LuaExtPassTiming
impl Send for LuaExtPassTiming
impl Sync for LuaExtPassTiming
impl Unpin for LuaExtPassTiming
impl UnsafeUnpin for LuaExtPassTiming
impl UnwindSafe for LuaExtPassTiming
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