pub struct DecodedAudioFrame {
pub pts_ms: u32,
pub frame: PcmFrameF32,
}Expand description
A decoded audio frame with timing metadata.
Fields§
§pts_ms: u32§frame: PcmFrameF32Trait Implementations§
Source§impl Clone for DecodedAudioFrame
impl Clone for DecodedAudioFrame
Source§fn clone(&self) -> DecodedAudioFrame
fn clone(&self) -> DecodedAudioFrame
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 DecodedAudioFrame
impl RefUnwindSafe for DecodedAudioFrame
impl Send for DecodedAudioFrame
impl Sync for DecodedAudioFrame
impl Unpin for DecodedAudioFrame
impl UnwindSafe for DecodedAudioFrame
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