pub trait SlopeTrickInt: Copy + Add<Output = Self> + AddAssign + Default + Ord {
    // Required method
    fn doz(self, rhs: Self) -> Self;
}

Required Methods§

source

fn doz(self, rhs: Self) -> Self

Implementations on Foreign Types§

source§

impl SlopeTrickInt for isize

source§

fn doz(self, rhs: Self) -> Self

source§

impl SlopeTrickInt for i8

source§

fn doz(self, rhs: Self) -> Self

source§

impl SlopeTrickInt for i16

source§

fn doz(self, rhs: Self) -> Self

source§

impl SlopeTrickInt for i32

source§

fn doz(self, rhs: Self) -> Self

source§

impl SlopeTrickInt for i64

source§

fn doz(self, rhs: Self) -> Self

source§

impl SlopeTrickInt for i128

source§

fn doz(self, rhs: Self) -> Self

Implementors§