[][src]Enum lewton::audio::AudioReadError

pub enum AudioReadError {
    EndOfPacket,
    AudioBadFormat,
    AudioIsHeader,
    BufferNotAddressable,
}

Variants

EndOfPacket
AudioBadFormat
AudioIsHeader
BufferNotAddressable

If the needed memory isn't addressable by us

This error is returned if a calculation yielded a higher value for an internal buffer size that doesn't fit into the platform's address range. Note that if we "simply" encounter an allocation failure (OOM, etc), we do what libstd does in these cases: crash.

This error is not automatically an error of the format, but rather is due to insufficient decoder hardware.

Trait Implementations

impl Debug for AudioReadError[src]

impl Display for AudioReadError[src]

impl Eq for AudioReadError[src]

impl Error for AudioReadError[src]

impl From<()> for AudioReadError[src]

impl From<AudioReadError> for VorbisError[src]

impl PartialEq<AudioReadError> for AudioReadError[src]

impl StructuralEq for AudioReadError[src]

impl StructuralPartialEq for AudioReadError[src]

Auto Trait Implementations

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> ToString for T where
    T: Display + ?Sized
[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.