Struct xsynth_render::XSynthRenderStats
source · pub struct XSynthRenderStats {
pub progress: f64,
pub voice_count: u64,
}
Expand description
Statistics of an XSynthRender object.
Fields§
§progress: f64
The progress of the render in seconds.
For example, if two seconds of the MIDI are rendered the value will be 2.0
.
voice_count: u64
The active voice count of the synthesizer.
Auto Trait Implementations§
impl Freeze for XSynthRenderStats
impl RefUnwindSafe for XSynthRenderStats
impl Send for XSynthRenderStats
impl Sync for XSynthRenderStats
impl Unpin for XSynthRenderStats
impl UnwindSafe for XSynthRenderStats
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