Enum riff_wave::WriteError [] [src]

pub enum WriteError {
    ExceededMaxSize,
    Io(Error),
}

Variants

Wave files are limited to 4GB in size.

An IO error occurred.

Trait Implementations

impl Debug for WriteError
[src]

Formats the value using the given formatter.

impl Display for WriteError
[src]

Formats the value using the given formatter. Read more

impl Error for WriteError
[src]

A short description of the error. Read more

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

impl From<Error> for WriteError
[src]

Performs the conversion.