//! Audio file writer trait.
//!
//! This module defines the [`Writer`] trait for writing audio file data.
//! Implementations are provided by the `bbx_file` crate (e.g., WAV writer).
use crateSample;
/// Trait for writing audio data to files.
///
/// Implementations handle encoding and file format specifics. Call
/// [`finalize`](Self::finalize) when done to ensure proper file closure.