Trait Associative

Source
pub trait Associative: BinaryOp {
    // Provided method
    fn assert(x: Self::S, y: Self::S, z: Self::S)
       where Self::S: Clone + PartialEq { ... }
}
Expand description

associative property

Provided Methods§

Source

fn assert(x: Self::S, y: Self::S, z: Self::S)
where Self::S: Clone + PartialEq,

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.

Implementors§