pub trait MotuCommandDspMeterSpecification {
const INPUT_PORTS: &'static [(TargetPort, usize)];
const OUTPUT_PORTS: &'static [(TargetPort, usize)];
const LEVEL_MIN: f32 = 0f32;
const LEVEL_MAX: f32 = 1f32;
const METER_IMAGE_SIZE: usize = 400usize;
// Provided method
fn create_meter_state() -> CommandDspMeterState { ... }
}
Expand description
The trait for specification of meter.
Required Associated Constants§
const INPUT_PORTS: &'static [(TargetPort, usize)]
const OUTPUT_PORTS: &'static [(TargetPort, usize)]
Provided Associated Constants§
const LEVEL_MIN: f32 = 0f32
const LEVEL_MAX: f32 = 1f32
const METER_IMAGE_SIZE: usize = 400usize
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.