pub trait Calculus {
    fn diff(&self) -> Self;
    fn integral(&self) -> Self;
}

Required Methods§

Implementors§