pub struct Pcm16Conversion {
pub samples: Vec<i16>,
pub report: PcmConversionReport,
}Expand description
PCM16 samples plus visible mapping, clipping, and quantization evidence.
Fields§
§samples: Vec<i16>Interleaved signed 16-bit PCM output.
report: PcmConversionReportConversion evidence; clipping is reported rather than hidden.
Trait Implementations§
Source§impl Clone for Pcm16Conversion
impl Clone for Pcm16Conversion
Source§fn clone(&self) -> Pcm16Conversion
fn clone(&self) -> Pcm16Conversion
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 Pcm16Conversion
impl Debug for Pcm16Conversion
Source§impl PartialEq for Pcm16Conversion
impl PartialEq for Pcm16Conversion
impl StructuralPartialEq for Pcm16Conversion
Auto Trait Implementations§
impl Freeze for Pcm16Conversion
impl RefUnwindSafe for Pcm16Conversion
impl Send for Pcm16Conversion
impl Sync for Pcm16Conversion
impl Unpin for Pcm16Conversion
impl UnsafeUnpin for Pcm16Conversion
impl UnwindSafe for Pcm16Conversion
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