[][src]Trait xalloc::int::RefSaturatingAdd

pub trait RefSaturatingAdd<RHS = Self> {
    type Output;
    pub fn ref_saturating_add(&self, rhs: RHS) -> Self::Output;
}

Types that supports saturating addition.

Associated Types

Loading content...

Required methods

pub fn ref_saturating_add(&self, rhs: RHS) -> Self::Output[src]

Loading content...

Implementations on Foreign Types

impl RefSaturatingAdd<i8> for i8[src]

type Output = Self

impl RefSaturatingAdd<i16> for i16[src]

type Output = Self

impl RefSaturatingAdd<i32> for i32[src]

type Output = Self

impl RefSaturatingAdd<i64> for i64[src]

type Output = Self

impl RefSaturatingAdd<isize> for isize[src]

type Output = Self

impl RefSaturatingAdd<u8> for u8[src]

type Output = Self

impl RefSaturatingAdd<u16> for u16[src]

type Output = Self

impl RefSaturatingAdd<u32> for u32[src]

type Output = Self

impl RefSaturatingAdd<u64> for u64[src]

type Output = Self

impl RefSaturatingAdd<usize> for usize[src]

type Output = Self

Loading content...

Implementors

Loading content...