pub trait Two {
    // Required method
    fn two() -> Self;
}

Required Methods§

source

fn two() -> Self

Implementors§

source§

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