Trait SafeNumeric

Source
pub trait SafeNumeric:
    Copy
    + PartialOrd
    + Sized {
    // Required methods
    fn max() -> Self;
    fn min() -> Self;
    fn safe_add(self, rhs: Self) -> Self;
    fn safe_sub(self, rhs: Self) -> Self;
    fn safe_mul(self, rhs: Self) -> Self;
    fn safe_div(self, rhs: Self) -> Self;
}
Expand description

A trait for safe arithmetic operations with bound checks.

Required Methods§

Source

fn max() -> Self

Source

fn min() -> Self

Source

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

Source

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

Source

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

Source

fn safe_div(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 SafeNumeric for i8

Source§

fn max() -> Self

Source§

fn min() -> Self

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl SafeNumeric for i16

Source§

fn max() -> Self

Source§

fn min() -> Self

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl SafeNumeric for i32

Source§

fn max() -> Self

Source§

fn min() -> Self

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl SafeNumeric for i64

Source§

fn max() -> Self

Source§

fn min() -> Self

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl SafeNumeric for u8

Source§

fn max() -> Self

Source§

fn min() -> Self

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl SafeNumeric for u16

Source§

fn max() -> Self

Source§

fn min() -> Self

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl SafeNumeric for u32

Source§

fn max() -> Self

Source§

fn min() -> Self

Source§

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

Source§

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

Source§

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

Source§

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

Source§

impl SafeNumeric for u64

Source§

fn max() -> Self

Source§

fn min() -> Self

Source§

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

Source§

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

Source§

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

Source§

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

Implementors§