Enum riff_wave::ReadError
[−]
[src]
pub enum ReadError {
Format(FormatErrorKind),
Io(Error),
}Represents an error that occurred while reading a wave file.
Variants
Format(FormatErrorKind)The file format is incorrect or unsupported.
Io(Error)An IO error occurred.
Trait Implementations
impl Debug for ReadError[src]
impl Display for ReadError[src]
impl Error for ReadError[src]
fn description(&self) -> &str
A short description of the error. Read more
fn cause(&self) -> Option<&Error>
The lower-level cause of this error, if any. Read more