pub trait ControlSourceExtManual: IsA<ControlSource> + 'static {
// Provided method
fn value_array(
&self,
timestamp: ClockTime,
interval: ClockTime,
values: &mut [f64],
) -> Result<(), BoolError> { ... }
}
Provided Methods§
fn value_array( &self, timestamp: ClockTime, interval: ClockTime, values: &mut [f64], ) -> Result<(), BoolError>
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.