pub trait ValueExponential: ValueDomain {
// Required method
fn exponential<'a>(
label: &'static str,
value: Self::Value<'a>,
) -> QueryResult<Self::Value<'a>>;
}Required Methods§
fn exponential<'a>( label: &'static str, value: Self::Value<'a>, ) -> QueryResult<Self::Value<'a>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".