Trait TestableAsF64

Source
pub trait TestableAsF64: Debug {
    // Required method
    fn testable_as_f64(&self) -> f64;
}
Expand description

Trait that allows an implementing type instance to be evaluated with the constructs of this crate.

NOTE: it is implemented for any types that implement base_traits::ToF64 (and std::fmt::Debug).

Required Methods§

Implementors§

Source§

impl<T> TestableAsF64 for T
where T: ToF64 + Debug,