pub enum OVError {
EndOfStream,
StreamInterrupted,
ReadError,
InternalFault,
NotImplemented,
InvalidArgument,
NotVorbis,
InvalidHeader,
UnsupportedVersion,
CorruptLink,
NotSeekable,
}
Variants
EndOfStream | |
StreamInterrupted | Encountered missing or corrupt data.
Recovery from this error is usually automatic and is returned for
informational purposes only.
|
ReadError | I/O error while reading compressed data to decode.
|
InternalFault | Internal inconsistency in encode or decode state. Recovery impossible.
|
NotImplemented | |
InvalidArgument | User passed an invalid argument to a function.
|
NotVorbis | Provided data is not recognized as Ogg Vorbis.
|
Provided data appears to be Ogg Vorbis but has a corrupt or
indecipherable header.
|
UnsupportedVersion | Bitstream format revision is not supported.
|
CorruptLink | The specified Vorbis link exists but is corrupt.
|
NotSeekable | The stream is not seekable.
|
Trait Implementations
Derived Implementations