usecrate::{Decibels,command::handle_param_setters};usesuper::CommandWriters;/// Controls a volume control effect.
#[derive(Debug)]pubstructVolumeControlHandle{pub(super) command_writers: CommandWriters,
}implVolumeControlHandle{handle_param_setters!{/// Sets the volume adjustment to apply to input audio.
volume: Decibels,}}