[−][src]Struct claxon::frame::FrameReader
Reads frames from a stream and exposes decoded blocks as an iterator.
TODO: for now, it is assumes that the reader starts at a frame header; no searching for a sync code is performed at the moment.
Methods
impl<R: ReadBytes> FrameReader<R>
[src]
pub fn new(input: R) -> FrameReader<R>
[src]
Creates a new frame reader that will yield at least one element.
pub fn read_next_or_eof(&mut self, buffer: Vec<i32>) -> FrameResult
[src]
Decodes the next frame or returns an error if the data was invalid.
The buffer is moved into the returned block, so that the same buffer may
be reused to decode multiple blocks, avoiding a heap allocation every
time. It can be retrieved again with block.into_buffer()
. If the
buffer is not large enough to hold all samples, a larger buffer is
allocated automatically.
TODO: I should really be consistent with 'read' and 'decode'.
pub fn into_inner(self) -> R
[src]
Destroy the frame reader, returning the wrapped reader.
Auto Trait Implementations
impl<R> Unpin for FrameReader<R> where
R: Unpin,
R: Unpin,
impl<R> Sync for FrameReader<R> where
R: Sync,
R: Sync,
impl<R> Send for FrameReader<R> where
R: Send,
R: Send,
impl<R> UnwindSafe for FrameReader<R> where
R: UnwindSafe,
R: UnwindSafe,
impl<R> RefUnwindSafe for FrameReader<R> where
R: RefUnwindSafe,
R: RefUnwindSafe,
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,