pub trait Middle {
    // Required methods
    fn low() -> Self;
    fn high() -> Self;
}

Required Methods§

source

fn low() -> Self

source

fn high() -> Self

Implementors§

source§

impl<T> Middle for Twhere T: Add<Output = Self> + Div<Output = Self> + Bounded + One + Two,