Struct librespot_tremor::Decoder[][src]

pub struct Decoder<R> where
    R: Read + Seek
{ /* fields omitted */ }

Allows you to decode a sound file stream into packets.

Implementations

impl<R> Decoder<R> where
    R: Read + Seek
[src]

pub fn new(input: R) -> Result<Decoder<R>, VorbisError>[src]

pub fn time_seek(&mut self, s: i64) -> Result<(), VorbisError>[src]

pub fn time_tell(&mut self) -> Result<i64, VorbisError>[src]

pub fn packets(&mut self) -> PacketsIter<'_, R>

Notable traits for PacketsIter<'a, R>

impl<'a, R> Iterator for PacketsIter<'a, R> where
    R: 'a + Read + Seek
type Item = Result<Packet, VorbisError>;
[src]

pub fn into_packets(self) -> PacketsIntoIter<R>

Notable traits for PacketsIntoIter<R>

impl<R> Iterator for PacketsIntoIter<R> where
    R: Read + Seek
type Item = Result<Packet, VorbisError>;
[src]

Trait Implementations

impl<R> Drop for Decoder<R> where
    R: Read + Seek
[src]

Auto Trait Implementations

impl<R> !RefUnwindSafe for Decoder<R>[src]

impl<R> Send for Decoder<R> where
    R: Send
[src]

impl<R> !Sync for Decoder<R>[src]

impl<R> Unpin for Decoder<R>[src]

impl<R> !UnwindSafe for Decoder<R>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.