1
0
Fork 0

Make smoothing styles Debug, Clone and Copy

This commit is contained in:
Robbert van der Helm 2022-05-29 14:21:41 +02:00
parent 7a4e7b187a
commit 45c141c394

View file

@ -7,6 +7,7 @@ use std::sync::atomic::{AtomicI32, Ordering};
use crate::buffer::Block;
/// Controls if and how parameters gets smoothed.
#[derive(Debug, Clone, Copy)]
pub enum SmoothingStyle {
/// No smoothing is applied. The parameter's `value` field contains the latest sample value
/// available for the parameters.