tiff::decoder

Trait Wrapping

Source
trait Wrapping {
    // Required method
    fn wrapping_add(&self, other: Self) -> Self;
}

Required Methods§

Source

fn wrapping_add(&self, other: 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 Wrapping for i8

Source§

fn wrapping_add(&self, other: Self) -> Self

Source§

impl Wrapping for i16

Source§

fn wrapping_add(&self, other: Self) -> Self

Source§

impl Wrapping for i32

Source§

fn wrapping_add(&self, other: Self) -> Self

Source§

impl Wrapping for i64

Source§

fn wrapping_add(&self, other: Self) -> Self

Source§

impl Wrapping for u8

Source§

fn wrapping_add(&self, other: Self) -> Self

Source§

impl Wrapping for u16

Source§

fn wrapping_add(&self, other: Self) -> Self

Source§

impl Wrapping for u32

Source§

fn wrapping_add(&self, other: Self) -> Self

Source§

impl Wrapping for u64

Source§

fn wrapping_add(&self, other: Self) -> Self

Implementors§