pub trait TryIntoF64 {
// Required method
fn try_as_f64(&self) -> Result<Option<f64>>;
}
Expand description
This trait is implemented for each type a TDigest
can operate on,
allowing it to support both numerical rust types (obtained from
PrimitiveArray
instances), and ScalarValue
instances.