Trait Semigroup

Source
pub trait Semigroup<I: Id>: Magma<I> + Associative<I> { }

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§

Source§

impl<I, T> Semigroup<I> for T
where T: Magma<I> + Associative<I>, I: Id,