Skip to main content

Distributive

Trait Distributive 

Source
pub trait Distributive { }
Expand description

Marker trait: Promises that a * (b + c) == (a * b) + (a * c).

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§