pub trait AsF64 { // Required method fn as_f64(self) -> f64; }
Trait for types that wrap an f64 value. All implementors are Copy, so consuming self is intentional.
Copy
self