Trait PowSemigroup

Source
pub trait PowSemigroup<I>: Semigroup<I>
where Self: Clone,
{ // Provided method fn pow_seimigroup(self, exp: u64) -> Self { ... } }

Provided Methods§

Source

fn pow_seimigroup(self, exp: u64) -> Self

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<S: Semigroup<I> + Clone, I> PowSemigroup<I> for S