pub struct MpegAudioF32 {
pub pts_ms: i64,
pub sample_rate: u32,
pub channels: u16,
pub samples: Vec<f32>,
}Fields§
§pts_ms: i64§sample_rate: u32§channels: u16§samples: Vec<f32>Trait Implementations§
Source§impl Clone for MpegAudioF32
impl Clone for MpegAudioF32
Source§fn clone(&self) -> MpegAudioF32
fn clone(&self) -> MpegAudioF32
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 moreAuto Trait Implementations§
impl Freeze for MpegAudioF32
impl RefUnwindSafe for MpegAudioF32
impl Send for MpegAudioF32
impl Sync for MpegAudioF32
impl Unpin for MpegAudioF32
impl UnwindSafe for MpegAudioF32
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