pub struct TruePeakReport {
pub sample_peak: f64,
pub true_peak: f64,
pub true_peak_dbtp: Option<f64>,
pub oversample_factor: usize,
pub work_units: u64,
}Expand description
Sample-peak and interpolated true-peak evidence.
Fields§
§sample_peak: f64Largest absolute input sample.
true_peak: f64Largest absolute bandlimited interpolated sample.
true_peak_dbtp: Option<f64>True peak in dBTP, or None for digital silence.
oversample_factor: usizeInteger interpolation factor actually used.
work_units: u64Interpolation multiply-accumulates charged by the report.
Trait Implementations§
Source§impl Clone for TruePeakReport
impl Clone for TruePeakReport
Source§fn clone(&self) -> TruePeakReport
fn clone(&self) -> TruePeakReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TruePeakReport
impl Debug for TruePeakReport
Source§impl PartialEq for TruePeakReport
impl PartialEq for TruePeakReport
impl StructuralPartialEq for TruePeakReport
Auto Trait Implementations§
impl Freeze for TruePeakReport
impl RefUnwindSafe for TruePeakReport
impl Send for TruePeakReport
impl Sync for TruePeakReport
impl Unpin for TruePeakReport
impl UnsafeUnpin for TruePeakReport
impl UnwindSafe for TruePeakReport
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