Mean

Trait Mean 

Source
pub trait Mean {
    // Required method
    fn mean(&self, other: &Self) -> Self;
}

Required Methods§

Source

fn mean(&self, other: &Self) -> 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.

Implementations on Foreign Types§

Source§

impl Mean for f64

Source§

fn mean(&self, other: &Self) -> Self

Source§

impl Mean for i32

Source§

fn mean(&self, other: &Self) -> Self

Implementors§

Source§

impl<T> Mean for PosC<T>
where T: Mean + Debug + Copy,