pub trait Accu<A> {
// Required methods
fn up(self) -> A;
fn down(a: A) -> Self;
}Expand description
Conversion trait between base and accumulator type
Required Methods§
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.