pub struct DspMeteringInfo {
pub numsamples: i32,
pub peaklevel: [f32; 32],
pub rmslevel: [f32; 32],
pub numchannels: i16,
}Fields§
§numsamples: i32§peaklevel: [f32; 32]§rmslevel: [f32; 32]§numchannels: i16Trait Implementations§
Source§impl Clone for DspMeteringInfo
impl Clone for DspMeteringInfo
Source§fn clone(&self) -> DspMeteringInfo
fn clone(&self) -> DspMeteringInfo
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 DspMeteringInfo
impl Debug for DspMeteringInfo
Source§impl Into<FMOD_DSP_METERING_INFO> for DspMeteringInfo
impl Into<FMOD_DSP_METERING_INFO> for DspMeteringInfo
Source§fn into(self) -> FMOD_DSP_METERING_INFO
fn into(self) -> FMOD_DSP_METERING_INFO
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for DspMeteringInfo
impl RefUnwindSafe for DspMeteringInfo
impl Send for DspMeteringInfo
impl Sync for DspMeteringInfo
impl Unpin for DspMeteringInfo
impl UnwindSafe for DspMeteringInfo
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