[−][src]Struct minimp3::Decoder
A MP3 decoder which consumes a reader and produces Frames.
Methods
impl<R> Decoder<R> where
R: Read, [src]
R: Read,
pub fn new(reader: R) -> Decoder<R>[src]
Creates a new decoder, consuming the reader.
pub fn next_frame(&mut self) -> Result<Frame, Error>[src]
Reads a new frame from the internal reader. Returns a Frame if one was found,
or, otherwise, an Err explaining why not.
pub fn reader(&self) -> &R[src]
pub fn reader_mut(&mut self) -> &mut R[src]
Trait Implementations
Auto Trait Implementations
impl<R> Unpin for Decoder<R> where
R: Unpin,
R: Unpin,
impl<R> Sync for Decoder<R> where
R: Sync,
R: Sync,
impl<R> UnwindSafe for Decoder<R> where
R: UnwindSafe,
R: UnwindSafe,
impl<R> RefUnwindSafe for Decoder<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,