Derivable

Trait Derivable 

Source
pub trait Derivable<T>
where T: DualNumFloat,
{ // Required methods fn execute_derivative(&self) -> Self; fn zeroth_derivative(&self) -> T; fn first_derivative(&self) -> T; }

Required Methods§

Source

fn execute_derivative(&self) -> Self

Source

fn zeroth_derivative(&self) -> T

Source

fn first_derivative(&self) -> T

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Derivable<f32> for Dual32

Implementors§