Expand description
Contains the errors that can arise within Lofty
The primary error is LoftyError
. The type of error is determined by ErrorKind
,
which can be extended at any time.
Structs§
- File
Decoding Error - An error that arises while decoding a file
- File
Encoding Error - An error that arises while encoding a file
- Id3v2
Error - An error that arises while interacting with an ID3v2 tag
- Lofty
Error - Errors that could occur within Lofty
Enums§
- Error
Kind - The types of errors that can occur
- Id3v2
Error Kind - The types of errors that can occur while interacting with ID3v2 tags
Type Aliases§
- Result
- Alias for
Result<T, LoftyError>