pub struct RenderTimingEvent {
pub mixing_time_us: u64,
pub spatial_time_us: u64,
pub resampling_time_us: u64,
pub total_time_us: u64,
}Expand description
Timing information for a single render iteration Used for performance profiling and stress testing
Fields§
§mixing_time_us: u64Time spent mixing audio sources (microseconds)
spatial_time_us: u64Time spent on spatial processing (microseconds)
resampling_time_us: u64Time spent on resampling (microseconds)
total_time_us: u64Total time for the entire render iteration (microseconds)
Trait Implementations§
Source§impl Clone for RenderTimingEvent
impl Clone for RenderTimingEvent
Source§fn clone(&self) -> RenderTimingEvent
fn clone(&self) -> RenderTimingEvent
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 RenderTimingEvent
impl Debug for RenderTimingEvent
impl Copy for RenderTimingEvent
Auto Trait Implementations§
impl Freeze for RenderTimingEvent
impl RefUnwindSafe for RenderTimingEvent
impl Send for RenderTimingEvent
impl Sync for RenderTimingEvent
impl Unpin for RenderTimingEvent
impl UnwindSafe for RenderTimingEvent
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