[][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 PartialEq<Error> for Error[src]

impl Eq for Error[src]

impl Clone for Error[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<ErrorCode> for Error[src]

impl Copy for Error[src]

impl Hash for Error[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Error[src]

impl Display for Error[src]

impl Error for Error[src]

fn cause(&self) -> Option<&dyn Error>
1.0.0
[src]

Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

The lower-level cause of this error, if any. Read more

fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

The lower-level source of this error, if any. Read more

Auto Trait Implementations

impl Send for Error

impl Sync for Error

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.