pub trait CrtWrapping {
    type I;

    // Required method
    fn crt_wrapping(&self) -> Self::I;
}

Required Associated Types§

source

type I

Required Methods§

source

fn crt_wrapping(&self) -> Self::I

Implementations on Foreign Types§

source§

impl CrtWrapping for [(u128, u128)]

§

type I = u128

source§

fn crt_wrapping(&self) -> u128

source§

impl CrtWrapping for [(u16, u16)]

§

type I = u16

source§

fn crt_wrapping(&self) -> u16

source§

impl CrtWrapping for [(u32, u32)]

§

type I = u32

source§

fn crt_wrapping(&self) -> u32

source§

impl CrtWrapping for [(u8, u8)]

§

type I = u8

source§

fn crt_wrapping(&self) -> u8

source§

impl CrtWrapping for [(u64, u64)]

§

type I = u64

source§

fn crt_wrapping(&self) -> u64

source§

impl CrtWrapping for [(usize, usize)]

§

type I = usize

source§

fn crt_wrapping(&self) -> usize

Implementors§