OpusError

Trait OpusError 

Source
pub trait OpusError {
    // Required method
    fn message(&self) -> &'static str;
}
Expand description

Error from parsing opus data.

Required Methods§

Source

fn message(&self) -> &'static str

Returns the error message as it is defined by libopus.

Implementors§

Source§

impl<E: RawOpusError> OpusError for E