num_traits::ops::saturating

Trait Saturating

Source
pub trait Saturating {
    // Required methods
    fn saturating_add(self, v: Self) -> Self;
    fn saturating_sub(self, v: Self) -> Self;
}
Expand description

Saturating math operations. Deprecated, use SaturatingAdd, SaturatingSub and SaturatingMul instead.

Required Methods§

Source

fn saturating_add(self, v: Self) -> Self

Saturating addition operator. Returns a+b, saturating at the numeric bounds instead of overflowing.

Source

fn saturating_sub(self, v: Self) -> Self

Saturating subtraction operator. Returns a-b, saturating at the numeric bounds instead of overflowing.

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 Saturating for i8

Source§

fn saturating_add(self, v: Self) -> Self

Source§

fn saturating_sub(self, v: Self) -> Self

Source§

impl Saturating for i16

Source§

fn saturating_add(self, v: Self) -> Self

Source§

fn saturating_sub(self, v: Self) -> Self

Source§

impl Saturating for i32

Source§

fn saturating_add(self, v: Self) -> Self

Source§

fn saturating_sub(self, v: Self) -> Self

Source§

impl Saturating for i64

Source§

fn saturating_add(self, v: Self) -> Self

Source§

fn saturating_sub(self, v: Self) -> Self

Source§

impl Saturating for i128

Source§

fn saturating_add(self, v: Self) -> Self

Source§

fn saturating_sub(self, v: Self) -> Self

Source§

impl Saturating for isize

Source§

fn saturating_add(self, v: Self) -> Self

Source§

fn saturating_sub(self, v: Self) -> Self

Source§

impl Saturating for u8

Source§

fn saturating_add(self, v: Self) -> Self

Source§

fn saturating_sub(self, v: Self) -> Self

Source§

impl Saturating for u16

Source§

fn saturating_add(self, v: Self) -> Self

Source§

fn saturating_sub(self, v: Self) -> Self

Source§

impl Saturating for u32

Source§

fn saturating_add(self, v: Self) -> Self

Source§

fn saturating_sub(self, v: Self) -> Self

Source§

impl Saturating for u64

Source§

fn saturating_add(self, v: Self) -> Self

Source§

fn saturating_sub(self, v: Self) -> Self

Source§

impl Saturating for u128

Source§

fn saturating_add(self, v: Self) -> Self

Source§

fn saturating_sub(self, v: Self) -> Self

Source§

impl Saturating for usize

Source§

fn saturating_add(self, v: Self) -> Self

Source§

fn saturating_sub(self, v: Self) -> Self

Implementors§