Inversion

Trait Inversion 

Source
pub trait Inversion {
    // Required method
    fn inversion<I>(&self) -> I
       where I: Add + for<'a> AddAssign<&'a I> + Sum + Product;
}

Required Methods§

Source

fn inversion<I>(&self) -> I
where I: Add + for<'a> AddAssign<&'a I> + Sum + Product,

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.

Implementations on Foreign Types§

Source§

impl<T> Inversion for [T]
where T: Ord,

Source§

fn inversion<I>(&self) -> I
where I: Add + for<'a> AddAssign<&'a I> + Sum + Product,

Implementors§