1 2 3 4 5 6 7
//! Support for streaming audio to and from files and memory buffers. mod format; mod stream; pub use format::{AudioFormat, BitRate, Channels, SampleRate}; pub use stream::{AudioStream, MemoryStream};