Trait num_dual::DualNumFloat

source ·
pub trait DualNumFloat: Float + FloatConst + FromPrimitive + Signed + Display + Debug + Sync + Send + 'static { }
Expand description

The underlying data type of individual derivatives. Usually f32 or f64.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> DualNumFloat for T
where T: Float + FloatConst + FromPrimitive + Signed + Display + Debug + Sync + Send + 'static,