1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#![warn(
missing_debug_implementations,
missing_docs,
rust_2018_idioms,
rust_2018_compatibility
)]
#![warn(clippy::all)]
#![allow(clippy::new_without_default)]
pub use self::{
bundle::AudioBundle,
components::*,
formats::{FlacFormat, Mp3Format, OggFormat, WavFormat},
sink::AudioSink,
source::{Source, SourceHandle},
systems::*,
};
use std::{
error::Error,
fmt::{Display, Formatter, Result as FmtResult},
};
pub mod output;
mod bundle;
mod components;
mod end_signal;
mod formats;
mod sink;
mod source;
mod systems;
#[derive(Debug)]
pub struct DecoderError;
impl Display for DecoderError {
fn fmt(&self, formatter: &mut Formatter<'_>) -> FmtResult {
formatter.write_str("DecoderError")
}
}
impl Error for DecoderError {
fn description(&self) -> &str {
"An error occurred while decoding sound data."
}
fn cause(&self) -> Option<&dyn Error> {
None
}
}