mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
10 lines
215 B
Rust
10 lines
215 B
Rust
use std::fmt::Debug;
|
|
use thiserror::Error;
|
|
|
|
#[derive(Debug, Error)]
|
|
pub enum MetadataError {
|
|
#[error("empty response")]
|
|
Empty,
|
|
#[error("audio item is non-playable when it should be")]
|
|
NonPlayable,
|
|
}
|