pub trait ToDbInterval {
// Required method
fn to_dbinterval(
&self,
range: &ValueRange,
) -> Result<DbInterval, ToDbIntervalError>;
}Expand description
The trait for conversion into interval of dB.
Required Methods§
fn to_dbinterval( &self, range: &ValueRange, ) -> Result<DbInterval, ToDbIntervalError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".