[][src]Enum audiopus::error::Error

pub enum Error {
    InvalidApplication,
    InvalidBandwidth(i32),
    InvalidBitrate(i32),
    InvalidSignal(i32),
    InvalidComplexity(i32),
    InvalidSampleRate(i32),
    InvalidChannels(i32),
    Opus(ErrorCode),
    EmptyPacket,
    SignalsTooLarge,
    PacketTooLarge,
    MappingExpectedLen(usize),
}

Variants

InvalidApplication

A value failed to match a documented Application.

InvalidBandwidth(i32)

A value failed to match a documented Bandwidth.

InvalidBitrate(i32)

A value failed to match a documented Bitrate, negative values are invalid.

InvalidSignal(i32)

A value failed to match a documented Signal.

InvalidComplexity(i32)

Complexity was lower than 1 or higher than 10.

InvalidSampleRate(i32)

A value failed to match a documented SampleRate.

InvalidChannels(i32)

A value failed to match a documented [Channel].

Opus(ErrorCode)

An error returned from Opus containing an ErrorCode describing the cause.

EmptyPacket

Opus is not operating empty packets.

SignalsTooLarge

Opus' maximum Vec or slice length of std::i32::MAX has been exceeded.

PacketTooLarge

Opus' maximum Vec or slice length of std::i32::MAX has been exceeded.

MappingExpectedLen(usize)

A Vec representing a mapping exceeded the expected value.

Trait Implementations

impl From<ErrorCode> for Error[src]

impl Clone for Error[src]

impl Copy for Error[src]

impl Eq for Error[src]

impl PartialEq<Error> for Error[src]

impl Display for Error[src]

impl Debug for Error[src]

impl Hash for Error[src]

impl Error for Error[src]

Auto Trait Implementations

impl Send for Error

impl Sync for Error

impl Unpin for Error

impl UnwindSafe for Error

impl RefUnwindSafe for Error

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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