pub trait DualNumFloat:
DualNumCopy
+ Float
+ FloatConst {
const THIRD: Self;
const HALF: Self;
const TWO: Self;
const THREE: Self;
const FOUR: Self;
const SIX: Self;
const TEN: Self;
const FIFTEEN: Self;
}Expand description
The underlying data type of individual derivatives. Implemented for f32 or f64.
Required Associated Constants§
const THIRD: Self
const HALF: Self
const TWO: Self
const THREE: Self
const FOUR: Self
const SIX: Self
const TEN: Self
const FIFTEEN: Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".