Skip to main content

SlopeTrickInt

Trait SlopeTrickInt 

Source
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

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 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

Source§

impl SlopeTrickInt for isize

Source§

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

Implementors§