pub trait EncoderConfig: Send + Sync { // Required method fn build(&self) -> Result<Arc<dyn Encoder>>; }
Configuration trait for building encoders.